SettableChartGlobalizationSettings
SettableChartGlobalizationSettings class
Implementation of PivotGlobalizationSettings that supports user to set/change pre-defined texts.
class SettableChartGlobalizationSettings;
Constructors
Name | Description |
---|---|
constructor() | Default Constructor. |
Methods
Method | Description |
---|---|
getSeriesName() | Gets the name of Series in the Chart. |
setSeriesName(string) | Sets the name of Series in the Chart. |
getChartTitleName() | Gets the name of Chart Title. |
setChartTitleName(string) | Sets the name of Chart Title. |
getLegendIncreaseName() | Gets the name of increase for Legend. |
setLegendIncreaseName(string) | Sets the name of increase for Legend. |
getLegendDecreaseName() | Gets the name of Decrease for Legend. |
setLegendDecreaseName(string) | Sets the name of Decrease for Legend. |
getLegendTotalName() | Gets the name of Total for Legend. |
setLegendTotalName(string) | Sets the name of Total for Legend. |
getAxisTitleName() | Gets the name of Title for Axis. |
setAxisTitleName(string) | Sets the name of Title for Axis. |
getOtherName() | Gets the name of “Other” labels for Chart. |
setOtherName(string) | Sets the name of “Other” labels for Chart. |
getAxisUnitName(DisplayUnitType) | Gets the Name of Axis Unit. |
setAxisUnitName(DisplayUnitType, string) | Sets the Name of Axis Unit. |
isNull() | Checks whether the implementation object is null. |
constructor()
Default Constructor.
constructor();
getSeriesName()
Gets the name of Series in the Chart.
getSeriesName() : string;
setSeriesName(string)
Sets the name of Series in the Chart.
setSeriesName(name: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
name | string | local dependent name |
getChartTitleName()
Gets the name of Chart Title.
getChartTitleName() : string;
setChartTitleName(string)
Sets the name of Chart Title.
setChartTitleName(name: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
name | string | local dependent name |
getLegendIncreaseName()
Gets the name of increase for Legend.
getLegendIncreaseName() : string;
setLegendIncreaseName(string)
Sets the name of increase for Legend.
setLegendIncreaseName(name: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
name | string | local dependent name |
getLegendDecreaseName()
Gets the name of Decrease for Legend.
getLegendDecreaseName() : string;
setLegendDecreaseName(string)
Sets the name of Decrease for Legend.
setLegendDecreaseName(name: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
name | string | local dependent name |
getLegendTotalName()
Gets the name of Total for Legend.
getLegendTotalName() : string;
setLegendTotalName(string)
Sets the name of Total for Legend.
setLegendTotalName(name: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
name | string | local dependent name |
getAxisTitleName()
Gets the name of Title for Axis.
getAxisTitleName() : string;
setAxisTitleName(string)
Sets the name of Title for Axis.
setAxisTitleName(name: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
name | string | local dependent name |
getOtherName()
Gets the name of “Other” labels for Chart.
getOtherName() : string;
setOtherName(string)
Sets the name of “Other” labels for Chart.
setOtherName(name: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
name | string | local dependent name |
getAxisUnitName(DisplayUnitType)
Gets the Name of Axis Unit.
getAxisUnitName(type: DisplayUnitType) : string;
Parameters:
Parameter | Type | Description |
---|---|---|
type | DisplayUnitType |
setAxisUnitName(DisplayUnitType, string)
Sets the Name of Axis Unit.
setAxisUnitName(type: DisplayUnitType, name: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
type | DisplayUnitType | The unit type for displaying axis labels. |
name | string | local dependent name |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;