get(String propertyName)

Returns the specified property of stripLines.


Parameters:
        propertyName: Name of the property

Example:
        chart.axisX[0].stripLines[0].get(“text”);

Note:
  • Chart should be rendered before you can use this method.

var  chart =  new  CanvasJS("container",
{ 
    .
    .
    axisX: {
        stripLines: [{
            value: 10,
            label: "Stripline"
        },
        .
        ],
        .
    },
    .
    .
});
chart.render();

Console.log(chart.axisX[0].stripLines[0].get("label"));

Properties accessible via get method

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

Try it Yourself by Editing the Code below.


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