EaxChartView.Overflow

Syntax

Overflow: "none"|"ellipsis"

Description

The Overflow property determines whether to show an ellipsis for legend item that overflows the box.

Comments

If this property is set to "none" no ellipsis is used in name of the item that does not fit into the legend.

If this property is set to "ellipsis" (default) an ellipsis is used in name of the item that does not fit into the legend.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component).

//Get express report chart
chart = expressBox.getDataView().getChartView();
//Disable showing tooltips for legend items
chart.setShowLegendTooltip(False);
//Disable showing ellipsis for legend item named that do not fit
chart.setOverflow("none");

After executing the example an ellipsis is not shown for legend item names that do not fit. Tooltip for legend items is not shown.

See also:

EaxChartView