get(String propertyName)

Returns the specified property of legend.

Parameters:
        propertyName: Name of the property

Example:
         chart.legend.get(“fontColor”);
Note:
  • Chart should be rendered before you can use this method.
var  chart =  new  CanvasJS.Chart("container",
{
    .
    .
    legend:{
        // Legend properties
    },
    .
    . 
});
chart.render();
console.log(chart.legend.get("fontSize"));

Properties accessible via get method

Please refer to Legend Element for complete list of properties that can be accessed via get.

Try Editing The Code

  Also See:    


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