MindFusion.Charting Programmer's Guide

AxesChart.Y2AxisSettings Property

See Also
 





Gets os sets the appearance settings for the Y2-axis.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public AxisSettings Y2AxisSettings { get; set; }

Visual Basic  Copy Code

Public Property Y2AxisSettings As AxisSettings

 Property Value

An instance of the AxisSettings class.

 Remarks

The property specifies all appearance characteristics of the Y2-axis: labels, fonts, data format, minimum and maximum value as well the intervals among them, label suffix and prefix, division coefficient and division label and so on. For more information about the axis properties and their default values, please check the AxisSettings class.

Y2Axis is drawn only when Y2Data is not an empty list. It is drawn parallel to the Y-axis, at the end of the X-axis.

Default value for the Y2AxisSettings property is a new AxisSettings object, which properties are set to their default values.

 See Also