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

protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
{
if (chartScale.ScaleJustification == ScaleJustification.Right)
{
// do something
}
}