get(String propertyName)

Returns the specified property of dataSeries.

Parameters:
        propertyName: Name of the property

Example: chart.data[0].get(“name”);
Note:
  • Chart should be rendered before you can use this method.
var  chart =  new  CanvasJS("container",
{
    .
    . 
    data:[{
         //dataSeries1
    },
    {
        //dataSeries2
    },
    .
    ],
    .
    .
});
chart.render();
console.log(chart.data[0].get("type"));

Properties accessible via get method

Please refer to DataSeries Elements for the 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