Package com.grapecity.documents.excel
Interface IDataOptions
public interface IDataOptions
Represents the options related to data import and data analysis.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanGets whether to automatic group Date/Time columns in PivotTables.booleanGets whether to treat big decimal as double.voidsetAutomaticGroupDateTimeInPivotTable(boolean value) Sets whether to automatic group Date/Time columns in PivotTables.voidsetBigDecimalAsDouble(boolean value) Sets whether to treat big decimal as double.
-
Method Details
-
getAutomaticGroupDateTimeInPivotTable
boolean getAutomaticGroupDateTimeInPivotTable()Gets whether to automatic group Date/Time columns in PivotTables. -
setAutomaticGroupDateTimeInPivotTable
void setAutomaticGroupDateTimeInPivotTable(boolean value) Sets whether to automatic group Date/Time columns in PivotTables. -
getBigDecimalAsDouble
boolean getBigDecimalAsDouble()Gets whether to treat big decimal as double.- Returns:
- treat big decimal as double or not.
-
setBigDecimalAsDouble
void setBigDecimalAsDouble(boolean value) Sets whether to treat big decimal as double.- Parameters:
value- value of treat big decimal as double or not.
-