IsYAxisDisplayedLeft

View as Markdown

Definition

Indicates the y-axis displays (in any chart panel) to the left side of the chart.

Property Value

A boolean value. When True, indicates that the y-axis displays to the left of the chart canvas; otherwise False.

Syntax

\<ChartControl\>.IsYAxisDisplayedLeft

Examples

1protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
2{
3 // Print the value of IsYAxisDisplayedLeft
4 Print("Y-Axis visible to the left of the chart canvas? " + chartControl.IsYAxisDisplayedLeft);
5}

Based on the image below, IsYAxisDisplayedLeft confirms that the y-axis displays to the left of the chart canvas.

ChartControl_isYAxisDisplayedLeft