Legend

This section is regarding Methods and Properties available in the Legend element.


Example :
        chart.legend.get(“fontColor”);
        chart.legend.set(“cursor”, “crosshair”);

Note
  • Chart should be rendered before you can access legend & its methods / properties.

Legend Methods:

Method Description Example
get(String propertyName) Returns the specified property of legend chart.legend.get(“maxWidth”);
set(String propertyName, Mixed value [,Boolean updateChart = true]) Sets the specified property of legend & optionally updates (default) the chart. chart.legend.set(“fontColor”, “red”);

Read-Only Legend Properties:

Can be accessed via get method or dot notation.


Property Description Example
bounds Bounding rectangle of legend: {x1, x2, y1, y2} chart.bounds / chart.legend.get(“bounds”)

Writable Properties in Legend:

All Legend options become available as properties after Chart Render. You can access them either via get method or dot notation. But you can change / set those values only via set method.

Please refer to Legend Element for complete list of properties available.


Try it Yourself by Editing the Code below.

  Also See:    



If you have any questions, please feel free to ask in our forums.Ask Question