ChartCalculateOptions

ChartCalculateOptions class

Represents the options for calculating chart.

class ChartCalculateOptions;

Constructors

ConstructorDescription
constructor()Creates the options for calculating chart.

Properties

PropertyTypeDescription
updateAllPointsbooleanWhether update all data points when performing the chart calculation. Default: False. When you want to get the value for each data point in the chart specifically, set it to true. If this parameter is set to True, the new data points may be generated when chart is calculated. This could make the Excel file larger.

Methods

MethodDescription
getUpdateAllPoints()@deprecated. Please use the ‘updateAllPoints’ property instead. Whether update all data points when performing the chart calculation. Default: False. When you want to get the value for each data point in the chart specifically, set it to true. If this parameter is set to True, the new data points may be generated when chart is calculated. This could make the Excel file larger.
setUpdateAllPoints(boolean)@deprecated. Please use the ‘updateAllPoints’ property instead. Whether update all data points when performing the chart calculation. Default: False. When you want to get the value for each data point in the chart specifically, set it to true. If this parameter is set to True, the new data points may be generated when chart is calculated. This could make the Excel file larger.
isNull()Checks whether the implementation object is null.

constructor()

Creates the options for calculating chart.

constructor();

updateAllPoints

Whether update all data points when performing the chart calculation. Default: False. When you want to get the value for each data point in the chart specifically, set it to true. If this parameter is set to True, the new data points may be generated when chart is calculated. This could make the Excel file larger.

updateAllPoints : boolean;

getUpdateAllPoints()

@deprecated. Please use the ‘updateAllPoints’ property instead. Whether update all data points when performing the chart calculation. Default: False. When you want to get the value for each data point in the chart specifically, set it to true. If this parameter is set to True, the new data points may be generated when chart is calculated. This could make the Excel file larger.

getUpdateAllPoints() : boolean;

setUpdateAllPoints(boolean)

@deprecated. Please use the ‘updateAllPoints’ property instead. Whether update all data points when performing the chart calculation. Default: False. When you want to get the value for each data point in the chart specifically, set it to true. If this parameter is set to True, the new data points may be generated when chart is calculated. This could make the Excel file larger.

setUpdateAllPoints(value: boolean) : void;

Parameters:

ParameterTypeDescription
valuebooleanThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;