ScaleJustification

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

ScaleJustification

Return to chapter overview

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

ns

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