Skip to main content

6-4-3 Functions for charts

Function name

Feature

SET_CSV

Sets the CSV file.

ADD_VALUE_GRIDLINE

Adds a gridline at the specified value on the value axis.

GRIDLINE_TYPE

Retrieves the type of the axis that you are drawing.

GRIDLINE_INDEX

Retrieves the index of the axis that you are drawing.

ITEM_GRIDLINE_VALUE

Retrieves the value of the category axis that you are drawing.

VALUE_GRIDLINE_VALUE

Retrieves the value of the value axis that you are drawing.

ITEM_GRIDLINE_VISIBLE

Shows or hides the category axis gridlines.

VALUE_GRIDLINE_VISIBLE

Shows or hides the value axis gridlines.

ITEM_GRIDLINE_STROKE_WIDTH

Changes the line width of the category axis gridlines.

VALUE_GRIDLINE_STROKE_WIDTH

Changes the line width of the value axis gridlines.

ITEM_GRIDLINE_STROKE_COLOR

Changes the color of the category axis gridlines.

VALUE_GRIDLINE_STROKE_COLOR

Changes the color of the value axis gridlines.

ADD_GRIDLINE

Adds a gridline at the specified value.

GRIDLINE_VALUE

Retrieves the value of the axis that you are drawing.

LABEL_VISIBLE

Shows or hides label text.

LABEL_COLOR

Changes the color of label text.

LABEL_BOLD

Changes the bold attribute of label text.

LABEL_ITALIC

Changes the italic attribute of label text.

LABEL_SIZE

Changes the size of label text.

GRIDLINE_VISIBLE

Shows or hides the gridlines.

GRIDLINE_UNIT

Changes the intervals of the gridlines.

GRIDLINE_MAX_VALUE

Changes the maximum gridline value.

GRIDLINE_MIN_VALUE

Changes the minimum gridline value.

GRIDLINE_STROKE_WIDTH

Changes the line width of the gridlines.

GRIDLINE_STROKE_COLOR

Changes the color of the gridlines.

AUX_GRIDLINE_DIVISION

Changes the number of divisions for the auxiliary gridlines.

GRIDLINE_VALUE

Retrieves the value of the category axis that you are drawing.

AXISLABEL_VALUE

Retrieves the value of the axis label that you are drawing.

AXISLABEL_VISIBLE

Shows or hides the axis labels.

AXISLABEL_COLOR

Changes the font color of the axis labels.

AXISLABEL_BOLD

Changes the bold attribute of axis label text.

AXISLABEL_ITALIC

Changes the italic attribute of axis label text.

AXISLABEL_SIZE

Changes the size of axis label text.

VALUELABEL_VISIBLE

Shows or hides the value labels.

VALUELABEL_COLOR

Changes the font color of the value labels.

VALUELABEL_BOLD

Changes the bold attribute of value label text.

VALUELABEL_ITALIC

Changes the italic attribute of value label text.

VALUELABEL_SIZE

Changes the size of value label text.

DATASERIES_VALUE

Retrieves the name of the data series.

REF_VALUE

Retrieves the value that the data series is referencing.

STROKE_WIDTH

Changes the line width of the data series.

STROKE_COLOR

Changes the line color of the data series.

SECONDARY_MARKER_TYPE

Changes the type of the auxiliary marker.

SECONDARY_MARKER_STROKE_WIDTH

Changes the line width of the auxiliary marker.

SECONDARY_MARKER_STROKE_COLOR

Changes the line color of the auxiliary marker.

SECONDARY_MARKER_FILL_COLOR

Changes the fill color of the auxiliary marker.

SET_CSV

Feature

Sets the CSV file.

Format

null SET_CSV(CSVFilePath_string<,Encoding_string>)

Settings

  1. In "CSVFilePath_string", specify the CSV file that is referenced during execution.

  2. In "Encoding_string", specify the CSV file encoding.

    If you do not specify the encoding, the encoding specified by the VrInit function is used.

Target area

Chart area

ADD_VALUE_GRIDLINE

Feature

Adds a gridline at the specified value on the value axis.

Format

null ADD_VALUE_GRIDLINE(GridlineType_int,AxisNumber_int,ValueOnAxis_double)

Settings

  1. In "GridlineType_int", specify the type of the value axis gridline to be added.

    0: Gridlines

    1: Auxiliary gridlines

  2. In "AxisNumber_int", specify the axis number to be added to.

    1: Value axis #1

    2: Value axis #2

    Caution

    For radar charts, "1" is the only valid number for "AxisNumber_int".

  3. In "ValueOnAxis_double", specify the axis value to which gridline is added.

Target area

Plot area

  • It cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_TYPE function, GRIDLINE_INDEX function, ITEM_GRIDLINE_VALUE function, VALUE_GRIDLINE_VALUE function,

    ITEM_GRIDLINE_VISIBLE function, VALUE_GRIDLINE_VISIBLE function, ITEM_GRIDLINE_STROKE_WIDTH function,

    VALUE_GRIDLINE_STROKE_WIDTH function, ITEM_GRIDLINE_STROKE_COLOR function, VALUE_GRIDLINE_STROKE_COLOR function

GRIDLINE_TYPE

Feature

Retrieves the type of the axis that you are drawing.

Format

int GRIDLINE_TYPE()

Return value

Retrieves the type of the axis that you are drawing as numeric-type data.

0: Gridlines

1: Auxiliary gridlines

Target area

Plot area, value axis, category axis, axis (circular chart)

  • When using it in the plot area, it cannot be described in the same attribute-formula as the following functions.

    ADD_VALUE_GRIDLINE function

  • When using it in the axis (circular chart), it cannot be described in the same attribute-formula as the following functions.

    AXISLABEL_VALUE function, AXISLABEL_VISIBLE function, AXISLABEL_COLOR function, AXISLABEL_BOLD function, AXISLABEL_ITALIC function, AXISLABEL_SIZE function, ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DISION function

  • When using it in the value axis, it cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DIVISION function

  • When using it in the category axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_UNIT and AUX_GRIDLINE_DIVISION functions

GRIDLINE_INDEX

Feature

Retrieves the index of the axis that you are drawing.

Format

int GRIDLINE_INDEX()

Return value

Retrieves the index of the axis that you are drawing as numeric-type data.

1: First axis

2: Second axis

Target area

Plot area

  • It can be used for rectangle charts only.

  • It cannot be described in the same attribute-formula as the following functions.

    ADD_VALUE_GRIDLINE function

ITEM_GRIDLINE_VALUE

Feature

Retrieves the value of the category axis that you are drawing.

Format

string ITEM_GRIDLINE_VALUE()

Return value

Retrieves the category axis value that you are drawing as text-type data.

Target area

Plot area

  • It can be used for rectangle charts only.

  • It cannot be described in the same attribute-formula as the following functions.

    ADD_VALUE_GRIDLINE function, VALUE_GRIDLINE_VALUE function, VALUE_GRIDLINE_VISIBLE function, VALUE_GRIDLINE_STROKE_WIDTH function, VALUE_GRIDLINE_STROKE_COLOR function

VALUE_GRIDLINE_VALUE

Feature

Retrieves the value of the value axis that you are drawing.

Format

double VALUE_GRIDLINE_VALUE()

Return value

Retrieves the value axis value that you are drawing as numeric-type data.

Target area

Plot area

  • It cannot be described in the same attribute-formula as the following functions.

    ADD_VALUE_GRIDLINE function, ITEM_GRIDLINE_VALUE function, ITEM_GRIDLINE_VISIBLE function, ITEM_GRIDLINE_STROKE_WIDTH function, ITEM_GRIDLINE_STROKE_COLOR function

ITEM_GRIDLINE_VISIBLE

Feature

Shows or hides the category axis gridlines.

Format

null ITEM_GRIDLINE_VISIBLE(Flag_int)

Settings

In "Flag_int", specify whether to show or hide the category axis gridlines.

0: Hide

1: Show

Target area

Plot area

  • It can be used for rectangle charts only.

  • It cannot be described in the same attribute-formula as the following functions.

    ADD_VALUE_GRIDLINE function, VALUE_GRIDLINE_VALUE function, VALUE_GRIDLINE_VISIBLE function, VALUE_GRIDLINE_STROKE_WIDTH function, VALUE_GRIDLINE_STROKE_COLOR function

VALUE_GRIDLINE_VISIBLE

Feature

Shows or hides the value axis gridlines.

Format

null VALUE_GRIDLINE_VISIBLE(Flag_int)

Settings

In "Flag_int", specify whether to show or hide the value axis gridlines.

0: Hide

1: Show

Target area

Plot area

  • It cannot be described in the same attribute-formula as the following functions.

    ADD_VALUE_GRIDLINE function, ITEM_GRIDLINE_VALUE function, ITEM_GRIDLINE_VISIBLE function, ITEM_GRIDLINE_STROKE_WIDTH function, ITEM_GRIDLINE_STROKE_COLOR function

ITEM_GRIDLINE_STROKE_WIDTH

Feature

Changes the line width of the category axis gridlines.

Format

null ITEM_GRIDLINE_STROKE_WIDTH(LineWidth_int)

Settings

In "LineWidth_int", specify the line width of the category axis gridlines in dots (between 1 and 10000).

Target area

Plot area

  • It can be used for rectangle charts only.

  • It cannot be described in the same attribute-formula as the following functions.

    ADD_VALUE_GRIDLINE function, VALUE_GRIDLINE_VALUE function, VALUE_GRIDLINE_VISIBLE function, VALUE_GRIDLINE_STROKE_WIDTH function, VALUE_GRIDLINE_STROKE_COLOR function

VALUE_GRIDLINE_STROKE_WIDTH

Feature

Changes the line width of the value axis gridlines.

Format

null VALUE_GRIDLINE_STROKE_WIDTH(LineWidth_int)

Settings

In "LineWidth_int", specify the line width of the value axis gridlines in dots (between 1 and 10000).

Target area

Plot area

  • It cannot be described in the same attribute-formula as the following functions.

    ADD_VALUE_GRIDLINE function, ITEM_GRIDLINE_VALUE function, ITEM_GRIDLINE_VISIBLE function, ITEM_GRIDLINE_STROKE_WIDTH function, ITEM_GRIDLINE_STROKE_COLOR function

ITEM_GRIDLINE_STROKE_COLOR

Feature

Changes the color of the category axis gridlines.

Format

null ITEM_GRIDLINE_STROKE_COLOR(ColorNumber_int)

Settings

In "ColorNumber_int", specify the palette color number of the category axis gridlines (between 1 and 256).

Target area

Plot area

  • It can be used for rectangle charts only.

  • It cannot be described in the same attribute-formula as the following functions.

    ADD_VALUE_GRIDLINE function, VALUE_GRIDLINE_VALUE function, VALUE_GRIDLINE_VISIBLE function, VALUE_GRIDLINE_STROKE_WIDTH function, VALUE_GRIDLINE_STROKE_COLOR function

VALUE_GRIDLINE_STROKE_COLOR

Feature

Changes the color of the value axis gridlines.

Format

null VALUE_GRIDLINE_STROKE_COLOR(ColorNumber_int)

Settings

In "ColorNumber_int", specify the palette color number of the value axis gridlines (between 1 and 256).

Target area

Plot area

  • It cannot be described in the same attribute-formula as the following functions.

    ADD_VALUE_GRIDLINE function, ITEM_GRIDLINE_VALUE function, ITEM_GRIDLINE_VISIBLE function, ITEM_GRIDLINE_STROKE_WIDTH function, ITEM_GRIDLINE_STROKE_COLOR function

ADD_GRIDLINE

Feature

Adds a gridline at the specified value.

Format

null ADD_GRIDLINE(GridlineType_int,ValueOnAxis_double)

Settings

  1. In "GridlineType_int", specify the type of the gridline to be added.

    0: Gridlines

    1: Auxiliary gridlines

  2. In "ValueOnAxis_double", specify the axis value to which gridline is added.

Target area

Value axis, axis (circular chart)

  • When using it in the axis (circular chart), it cannot be described in the same attribute-formula as the following functions.

    AXISLABEL_VALUE function, AXISLABEL_VISIBLE function, AXISLABEL_COLOR function, AXISLABEL_BOLD function, AXISLABEL_ITALIC function, AXISLABEL_SIZE function, GRIDLINE_TYPE function, GRIDLINE_VALUE function, VALUELABEL_VISIBLE function, VALUELABEL_COLOR function, VALUELABEL_BOLD function, VALUELABEL_ITALIC function, VALUELABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function

  • When using it in the value axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_TYPE function, GRIDLINE_VALUE function, LABEL_VISIBLE function, LABEL_COLOR function, LABEL_BOLD function, LABEL_ITALIC function, LABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function

GRIDLINE_VALUE

Feature

Retrieves the value of the axis that you are drawing.

Format

double GRIDLINE_VALUE()

Return value

Retrieves the axis value that you are drawing as numeric-type data.

Target area

Value axis, axis (circular chart)

  • When using it in the axis (circular chart), it cannot be described in the same attribute-formula as the following functions.

    AXISLABEL_VALUE function, AXISLABEL_VISIBLE function, AXISLABEL_COLOR function, AXISLABEL_BOLD function, AXISLABEL_ITALIC function, AXISLABEL_SIZE function, ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DISION function

  • When using it in the value axis, it cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DIVISION function

LABEL_VISIBLE

Feature

Shows or hides label text.

Format

null LABEL_VISIBLE(Flag_int)

Settings

In "Flag_int", specify whether to show or hide label text.

0: Hide

1: Show

Target area

Value axis, category axis, legend, series

  • When using it in the value axis, it cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DIVISION function

  • When using it in the category axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_UNIT and AUX_GRIDLINE_DIVISION functions

LABEL_COLOR

Feature

Changes the color of label text.

Format

null LABEL_COLOR(ColorNumber_int)

Settings

In "ColorNumber_int", specify the palette color number of label text (between 1 and 256).

Target area

Value axis, category axis, legend, series

  • When using it in the value axis, it cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DIVISION function

  • When using it in the category axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_UNIT and AUX_GRIDLINE_DIVISION functions

LABEL_BOLD

Feature

Changes the bold attribute of label text.

Format

null LABEL_BOLD(Flag_int)

Settings

In "Flag_int", specify ON/OFF for the bold attribute of label text.

1: ON

0: OFF

Target area

Value axis, category axis, legend, series

  • When using it in the value axis, it cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DIVISION function

  • When using it in the category axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_UNIT and AUX_GRIDLINE_DIVISION functions

LABEL_ITALIC

Feature

Changes the italic attribute of label text.

Format

null LABEL_ITALIC(Flag_int)

Settings

In "Flag_int", specify ON/OFF for the italic attribute of label text.

1: ON

0: OFF

Target area

Value axis, category axis, legend, series

  • When using it in the value axis, it cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DIVISION function

  • When using it in the category axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_UNIT and AUX_GRIDLINE_DIVISION functions

LABEL_SIZE

Feature

Changes the size of label text.

Format

null LABEL_SIZE(Point_double)

Settings

In "Point_double", specify the size of label text in points (between 1 and 96).

Target area

Value axis, category axis, legend, series

  • When using it in the value axis, it cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DIVISION function

  • When using it in the category axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_UNIT and AUX_GRIDLINE_DIVISION functions

GRIDLINE_VISIBLE

Feature

Shows or hides the gridlines.

Format

null GRIDLINE_VISIBLE(Flag_int)

Settings

In "Flag_int", specify whether to show or hide the gridlines.

0: Hide

1: Show

Target area

Value axis, category axis, axis (circular chart)

  • When using it in the axis (circular chart), it cannot be described in the same attribute-formula as the following functions.

    AXISLABEL_VALUE function, AXISLABEL_VISIBLE function, AXISLABEL_COLOR function, AXISLABEL_BOLD function, AXISLABEL_ITALIC function, AXISLABEL_SIZE function, ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DISION function

  • When using it in the value axis, it cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DIVISION function

  • When using it in the category axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_UNIT and AUX_GRIDLINE_DIVISION functions

GRIDLINE_UNIT

Feature

Changes the intervals of the gridlines.

Format

null GRIDLINE_UNIT(Interval_int)

Settings

In "Interval_int", specify the interval between gridlines (greater than 0 and less than the maximum gridline value).

Target area

Value axis, category axis, axis (circular chart)

  • When using it in the axis (circular chart), it cannot be described in the same attribute-formula as the following functions.

    AXISLABEL_VALUE function, AXISLABEL_VISIBLE function, AXISLABEL_COLOR function, AXISLABEL_BOLD function, AXISLABEL_ITALIC function, AXISLABEL_SIZE function, GRIDLINE_TYPE function, GRIDLINE_VALUE function, VALUELABEL_VISIBLE function, VALUELABEL_COLOR function, VALUELABEL_BOLD function, VALUELABEL_ITALIC function, VALUELABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_STROKE_WIDTH function,

    GRIDLINE_STROKE_COLOR function

  • When using it in the value axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_TYPE function, GRIDLINE_VALUE function, LABEL_VISIBLE function, LABEL_COLOR function, LABEL_BOLD function, LABEL_ITALIC function, LABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function

  • When using it in the category axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_TYPE function, GRIDLINE_VALUE function, LABEL_VISIBLE function, LABEL_COLOR function, LABEL_BOLD function, LABEL_ITALIC function, LABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function

GRIDLINE_MAX_VALUE

Feature

Changes the maximum gridline value.

Format

null GRIDLINE_MAX_VALUE(MaxValue_double)

Settings

In "MaxValue_double", specify the maximum gridline value (which must be greater than the minimum gridline value).

Target area

Value axis, axis (circular chart)

  • When using it in the axis (circular chart), it cannot be described in the same attribute-formula as the following functions.

    AXISLABEL_VALUE function, AXISLABEL_VISIBLE function, AXISLABEL_COLOR function, AXISLABEL_BOLD function, AXISLABEL_ITALIC function, AXISLABEL_SIZE function, GRIDLINE_TYPE function, GRIDLINE_VALUE function, VALUELABEL_VISIBLE function, VALUELABEL_COLOR function, VALUELABEL_BOLD function, VALUELABEL_ITALIC function, VALUELABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function

  • When using it in the value axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_TYPE function, GRIDLINE_VALUE function, LABEL_VISIBLE function, LABEL_COLOR function, LABEL_BOLD function, LABEL_ITALIC function, LABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function

GRIDLINE_MIN_VALUE

Feature

Changes the minimum gridline value.

Format

null GRIDLINE_MIN_VALUE(MinValue_double)

Settings

In "MinValue_double", specify the minimum gridline value (which must be less than the maximum gridline value).

Target area

Value axis, axis (circular chart)

  • When using it in the axis (circular chart), it cannot be described in the same attribute-formula as the following functions.

    AXISLABEL_VALUE function, AXISLABEL_VISIBLE function, AXISLABEL_COLOR function, AXISLABEL_BOLD function, AXISLABEL_ITALIC function, AXISLABEL_SIZE function, GRIDLINE_TYPE function, GRIDLINE_VALUE function, VALUELABEL_VISIBLE function, VALUELABEL_COLOR function, VALUELABEL_BOLD function, VALUELABEL_ITALIC function, VALUELABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function

  • When using it in the value axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_TYPE function, GRIDLINE_VALUE function, LABEL_VISIBLE function, LABEL_COLOR function, LABEL_BOLD function, LABEL_ITALIC function, LABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function

GRIDLINE_STROKE_WIDTH

Feature

Changes the line width of the gridlines.

Format

null GRIDLINE_STROKE_WIDTH(LineWidth_int)

Settings

In "LineWidth_int", specify the line width of gridlines in dots (between 1 and 10000).

Target area

Value axis, category axis, axis (circular chart)

  • When using it in the axis (circular chart), it cannot be described in the same attribute-formula as the following functions.

    AXISLABEL_VALUE function, AXISLABEL_VISIBLE function, AXISLABEL_COLOR function, AXISLABEL_BOLD function, AXISLABEL_ITALIC function, AXISLABEL_SIZE function, ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DISION function

  • When using it in the value axis, it cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DIVISION function

  • When using it in the category axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_UNIT and AUX_GRIDLINE_DIVISION functions

GRIDLINE_STROKE_COLOR

Feature

Changes the color of the gridlines.

Format

null GRIDLINE_STROKE_COLOR(ColorNumber_int)

Settings

In "ColorNumber_int", specify the palette color number of the gridlines (between 1 and 256).

Target area

Value axis, category axis, axis (circular chart)

  • When using it in the axis (circular chart), it cannot be described in the same attribute-formula as the following functions.

    AXISLABEL_VALUE function, AXISLABEL_VISIBLE function, AXISLABEL_COLOR function, AXISLABEL_BOLD function, AXISLABEL_ITALIC function, AXISLABEL_SIZE function, ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DISION function

  • When using it in the value axis, it cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DIVISION function

  • When using it in the category axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_UNIT and AUX_GRIDLINE_DIVISION functions

AUX_GRIDLINE_DIVISION

Feature

Changes the number of divisions for the auxiliary gridlines.

Format

null AUX_GRIDLINE_DIVISION(Division_int)

Settings

In "Division_int", specify the number of divisions for the auxiliary gridlines (between 2 and 10).

Target area

Value axis, category axis, axis (circular chart)

  • When using it in the axis (circular chart), it cannot be described in the same attribute-formula as the following functions.

    AXISLABEL_VALUE function, AXISLABEL_VISIBLE function, AXISLABEL_COLOR function, AXISLABEL_BOLD function, AXISLABEL_ITALIC function, AXISLABEL_SIZE function, GRIDLINE_TYPE function, GRIDLINE_VALUE function, VALUELABEL_VISIBLE function, VALUELABEL_COLOR function, VALUELABEL_BOLD function, VALUELABEL_ITALIC function, VALUELABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function

  • When using it in the value axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_TYPE function, GRIDLINE_VALUE function, LABEL_VISIBLE function, LABEL_COLOR function, LABEL_BOLD function, LABEL_ITALIC function, LABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function

  • When using it in the category axis, it cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_TYPE function, GRIDLINE_VALUE function, LABEL_VISIBLE function, LABEL_COLOR function, LABEL_BOLD function, LABEL_ITALIC function, LABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function

GRIDLINE_VALUE

Feature

Retrieves the value of the category axis that you are drawing.

Format

string GRIDLINE_VALUE()

Return value

Retrieves the category axis value that you are drawing as text-type data.

Target area

Category axis

  • It cannot be described in the same attribute-formula as the following functions.

    GRIDLINE_UNIT and AUX_GRIDLINE_DIVISION functions

AXISLABEL_VALUE

Feature

Retrieves the value of the axis label that you are drawing.

Format

string AXISLABEL_VALUE()

Return value

Retrieves the axis label value that you are drawing as text-type data.

Target area

Axis (circular chart)

  • It cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_TYPE function, GRIDLINE_VALUE function, VALUELABEL_VISIBLE function, VALUELABEL_COLOR function, VALUELABEL_BOLD function, VALUELABEL_ITALIC function, VALUELABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function, AUX_GRIDLINE_DIVISION function

AXISLABEL_VISIBLE

Feature

Shows or hides the axis labels.

Format

null AXISLABEL_VISIBLE(Flag_int)

Settings

In "Flag_int", specify whether to show or hide axis labels.

0: Hide

1: Show

Target area

Axis (circular chart)

  • It cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_TYPE function, GRIDLINE_VALUE function, VALUELABEL_VISIBLE function, VALUELABEL_COLOR function, VALUELABEL_BOLD function, VALUELABEL_ITALIC function, VALUELABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function, AUX_GRIDLINE_DIVISION function

AXISLABEL_COLOR

Feature

Changes the font color of the axis labels.

Format

null AXISLABEL_COLOR(ColorNumber_int)

Settings

In "ColorNumber_int", specify the palette color number of axis label text (between 1 and 256).

Target area

Axis (circular chart)

  • It cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_TYPE function, GRIDLINE_VALUE function, VALUELABEL_VISIBLE function, VALUELABEL_COLOR function, VALUELABEL_BOLD function, VALUELABEL_ITALIC function, VALUELABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function, AUX_GRIDLINE_DIVISION function

AXISLABEL_BOLD

Feature

Changes the bold attribute of axis label text.

Format

null AXISLABEL_BOLD(Flag_int)

Settings

In "Flag_int", specify ON/OFF for the bold attribute of axis label text.

1: ON

0: OFF

Target area

Axis (circular chart)

  • It cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_TYPE function, GRIDLINE_VALUE function, VALUELABEL_VISIBLE function, VALUELABEL_COLOR function, VALUELABEL_BOLD function, VALUELABEL_ITALIC function, VALUELABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function, AUX_GRIDLINE_DIVISION function

AXISLABEL_ITALIC

Feature

Changes the italic attribute of axis label text.

Format

null AXISLABEL_ITALIC(Flag_int)

Settings

In "Flag_int", specify ON/OFF for the italic attribute of axis label text.

1: ON

0: OFF

Target area

Axis (circular chart)

  • It cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_TYPE function, GRIDLINE_VALUE function, VALUELABEL_VISIBLE function, VALUELABEL_COLOR function, VALUELABEL_BOLD function, VALUELABEL_ITALIC function, VALUELABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function, AUX_GRIDLINE_DIVISION function

AXISLABEL_SIZE

Feature

Changes the size of axis label text.

Format

null AXISLABEL_SIZE(Point_double)

Settings

In "Point_double", specify the size of axis label text in points (between 1 and 96).

Target area

Axis (circular chart)

  • It cannot be described in the same attribute-formula as the following functions.

    ADD_GRIDLINE function, GRIDLINE_TYPE function, GRIDLINE_VALUE function, VALUELABEL_VISIBLE function, VALUELABEL_COLOR function, VALUELABEL_BOLD function, VALUELABEL_ITALIC function, VALUELABEL_SIZE function, GRIDLINE_VISIBLE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, GRIDLINE_STROKE_WIDTH function, GRIDLINE_STROKE_COLOR function, AUX_GRIDLINE_DIVISION function

VALUELABEL_VISIBLE

Feature

Shows or hides the value labels.

Format

null VALUELABEL_VISIBLE(Flag_int)

Settings

In "Flag_int", specify whether to show or hide value labels.

0: Hide

1: Show

Target area

Axis (circular chart)

  • It cannot be described in the same attribute-formula as the following functions.

    AXISLABEL_VALUE function, AXISLABEL_VISIBLE function, AXISLABEL_COLOR function, AXISLABEL_BOLD function, AXISLABEL_ITALIC function, AXISLABEL_SIZE function, ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DISION function

VALUELABEL_COLOR

Feature

Changes the font color of the value labels.

Format

null VALUELABEL_COLOR(ColorNumber_int)

Settings

In "ColorNumber_int", specify the palette color number of value label text (between 1 and 256).

Target area

Axis (circular chart)

  • It cannot be described in the same attribute-formula as the following functions.

    AXISLABEL_VALUE function, AXISLABEL_VISIBLE function, AXISLABEL_COLOR function, AXISLABEL_BOLD function, AXISLABEL_ITALIC function, AXISLABEL_SIZE function, ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DISION function

VALUELABEL_BOLD

Feature

Changes the bold attribute of value label text.

Format

null VALUELABEL_BOLD(Flag_int)

Settings

In "Flag_int", specify ON/OFF for the bold attribute of value label text.

1: ON

0: OFF

Target area

Axis (circular chart)

  • It cannot be described in the same attribute-formula as the following functions.

    AXISLABEL_VALUE function, AXISLABEL_VISIBLE function, AXISLABEL_COLOR function, AXISLABEL_BOLD function, AXISLABEL_ITALIC function, AXISLABEL_SIZE function, ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DISION function

VALUELABEL_ITALIC

Feature

Changes the italic attribute of value label text.

Format

null VALUELABEL_ITALIC(Flag_int)

Settings

In "Flag_int", specify ON/OFF for the italic attribute of value label text.

1: ON

0: OFF

Target area

Axis (circular chart)

  • It cannot be described in the same attribute-formula as the following functions.

    AXISLABEL_VALUE function, AXISLABEL_VISIBLE function, AXISLABEL_COLOR function, AXISLABEL_BOLD function, AXISLABEL_ITALIC function, AXISLABEL_SIZE function, ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DISION function

VALUELABEL_SIZE

Feature

Changes the size of value label text.

Format

null VALUELABEL_SIZE(Point_double)

Settings

In "Point_double", specify the size of value label text in points (between 1 and 96).

Target area

Axis (circular chart)

  • It cannot be described in the same attribute-formula as the following functions.

    AXISLABEL_VALUE function, AXISLABEL_VISIBLE function, AXISLABEL_COLOR function, AXISLABEL_BOLD function, AXISLABEL_ITALIC function, AXISLABEL_SIZE function, ADD_GRIDLINE function, GRIDLINE_UNIT function, GRIDLINE_MAX_VALUE function, GRIDLINE_MIN_VALUE function, AUX_GRIDLINE_DISION function

DATASERIES_VALUE

Feature

Retrieves the name of the data series.

Format

string DATASERIES_VALUE()

Return value

Retrieves the name of the data series as text-type data.

Target area

Legend

REF_VALUE

Feature

Retrieves the value that the data series is referencing.

Format

double REF_VALUE()

Return value

Retrieves the value that the data series is referencing as numeric-type data.

Target area

Series

STROKE_WIDTH

Feature

Changes the line width of the data series.

Format

null STROKE_WIDTH(LineWidth_int)

Settings

In "LineWidth_int", specify the line width in dots (between 1 and 10000).

Target area

Series

STROKE_COLOR

Feature

Changes the line color of the data series.

Format

null STROKE_COLOR(ColorNumber_int)

Settings

In "ColorNumber_int", specify the palette color number of the line color (between 1 and 256).

Target area

Series

SECONDARY_MARKER_TYPE

Feature

Changes the type of the auxiliary marker.

Format

null SECONDARY_MARKER_TYPE(AuxMarkerType_int)

Settings

  1. In "AuxMarkerType_int", specify the type of the auxiliary marker as a numeric value.

    0: None

    1:dash.png

    2:l_line.png

    3:plus.png

    4:batsu.png

    5:asterisk.png

    6:sdCommon_itriangle.png

    7:black_dot.png

    8:sdCommon_istar.png

Target area

Series

Restriction

You cannot change this if the "Fill color" is set for a radar chart.

SECONDARY_MARKER_STROKE_WIDTH

Feature

Changes the line width of the auxiliary marker.

Format

null SECONDARY_MARKER_STROKE_WIDTH(LineWidth_int)

Settings

  1. In "LineWidth_int", specify the line width of the auxiliary marker in dots (between 1 and 10000).

Target area

Series

Restriction

You cannot change this if the "Fill color" is set for a radar chart.

SECONDARY_MARKER_STROKE_COLOR

Feature

Changes the line color of the auxiliary marker.

Format

null SECONDARY_MARKER_STROKE_COLOR(ColorNumber_int)

Settings

  1. In "ColorNumber_int", specify the palette color number of the line color for the auxiliary marker (between 1 and 256).

Target area

Series

Restriction

You cannot change this if the "Fill color" is set for a radar chart.

SECONDARY_MARKER_FILL_COLOR

Feature

Changes the fill color of the auxiliary marker.

Format

null SECONDARY_MARKER_FILL_COLOR(ColorNumber_int)

Settings

  1. In "ColorNumber_int", specify the palette color number of the fill color for the auxiliary marker (between 1 and 256).

Target area

Series

Restriction

You cannot change this if the "Fill color" is set for a radar chart.