Scales
Definition
A collection of ChartScale objects corresponding to objects within the chart panel.
Property Value
A ChartScaleCollection containing ChartScale objects
Syntax
ChartPanel.Scales
Examples
protected override void OnStateChange(){if (State == State.Historical){// loop through each panel which is currently configured on the hosting chartforeach (ChartPanel chartPanel in ChartControl.ChartPanels){// there are multiple scale per panel// i.e., Right, Left, Overlayforeach (ChartScale scale in chartPanel.Scales){// get the right scale margin typeif (scale.ScaleJustification == ScaleJustification.Right){Print(string.Format("The Right Scale of panel #{0}'s margin type is {1}",scale.PanelIndex, scale.Properties.AutoScaleMarginType));}}}}}
protected override void OnStateChange(){if (State == State.Historical){// Shows us at which index in the Scales collection the individual panel scales reside [0: Right, 1: Left, 2: Overlay]// The Scale collection gets accessed via passing the ScaleJustification enum in as indexPrint("Scales index " + 0 + " " + ChartPanel.Scales[ScaleJustification.Right]);Print("Scales index " + 1 + " " + ChartPanel.Scales[ScaleJustification.Left]);Print("Scales index " + 2 + " " + ChartPanel.Scales[ScaleJustification.Overlay]);}}