MindFusion.Charting Programmer's Guide

AxesChart.Y2Data Property

See Also
 





Gets or sets the data for Y2-bound graphics or the radiuses for bubbles in bubble charts.

Namespace: MindFusion.Charting.WebForms
Assembly: MindFusion.Charting.WebForms

 Syntax

C#  Copy Code

public IList Y2Data { get; }

Visual Basic  Copy Code

Public ReadOnly Property Y2Data As IList

 Property Value

An instance of type .NET IList that holds other lists with the numbers.

 Remarks

Data can be either numbers or DateTime values. They can be set in any format - integer, float, string as long as it can safely be converted to double-s or DateTime values using the standard .NET DoubleConverter and DateTimeConveter classes. The appearance options for the Y2-axis are set with Y2AxisSettings

In bubble charts, the property is used to calculate the bubbles' radii.

Default value for the Y2Data property is an empty IList object.

 See Also