ChartCalculateOptions

Inheritance: java.lang.Object

public class ChartCalculateOptions

Represents the options for calculating chart.

Constructors

ConstructorDescription
ChartCalculateOptions()Creates the options for calculating chart.

Methods

MethodDescription
equals(Object arg0)
getClass()
getUpdateAllPoints()Whether update all data points when performing the chart calculation.
hashCode()
notify()
notifyAll()
setUpdateAllPoints(boolean value)Whether update all data points when performing the chart calculation.
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

ChartCalculateOptions()

public ChartCalculateOptions()

Creates the options for calculating chart.

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getUpdateAllPoints()

public boolean getUpdateAllPoints()

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.

Returns: boolean

hashCode()

public native int hashCode()

Returns: int

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

setUpdateAllPoints(boolean value)

public void setUpdateAllPoints(boolean value)

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.

Parameters:

ParameterTypeDescription
valueboolean

toString()

public String toString()

Returns: java.lang.String

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int