ScaleJustification

View as Markdown

Definition

Indicates the location of the chart scale relative to the chart control.

Property Value

A ScaleJustification enum. Possible values are:

  • Right
  • Left
  • Overlay

Syntax

ScaleJustification

Examples

1protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
2{
3 if (chartScale.ScaleJustification == ScaleJustification.Right)
4 {
5 // do something
6 }
7
8}