<ig:XamShapeChart x:Name="ShapeChart"
ChartType="Spline"
</ig:XamShapeChart>
This topic contains the following sections:
As described in the Chart Types topic the chart can render different types of chart with a simple change of a property.
To assign chart type during initialization:
In XAML:
<ig:XamShapeChart x:Name="ShapeChart"
ChartType="Spline"
</ig:XamShapeChart>
In C#:
var ShapeChart = new XamShapeChart
{
ChartType = ShapeChartType.Spline
};
In VB:
Dim ShapeChart = New XamShapeChart() With
{
.ChartType = ShapeChartType.Spline
}
The following table explains which properties are required in the DataItems that the chart is populated with:
Note: *Points column must be a list of lists of X/Y objects
The following example exercises the minimum requirements for each chart type. Each data class below includes properties that are responsible for rending the visual data on the chart.
In C#:
public class ScatterPoint
{
public double X { get; set; }
public double Y { get; set; }
}
In VB:
Public Class ScatterPoint
Private m_X As Double
Public Property X() As Double
Get
Return m_X
End Get
Set
m_X = Value
End Set
End Property
Private m_Y As Double
Public Property Y() As Double
Get
Return m_Y
End Get
Set
m_Y = Value
End Set
End Property
End Class
In C#:
public class ScatterValue
{
public double X { get; set; }
public double Y { get; set; }
public double V { get; set; }
}
In VB:
Public Class ScatterValue
Private m_X As Double
Public Property X() As Double
Get
Return m_X
End Get
Set
m_X = Value
End Set
End Property
Private m_Y As Double
Public Property Y() As Double
Get
Return m_Y
End Get
Set
m_Y = Value
End Set
End Property
Private m_V As Double
Public Property V() As Double
Get
Return m_V
End Get
Set
m_V = Value
End Set
End Property
End Class
In C#:
public class ScatterBubble
{
public double X { get; set; }
public double Y { get; set; }
public double R { get; set; }
public double Fill { get; set; } // an optional value
}
In VB:
Public Class ScatterBubble
Private m_X As Double
Public Property X() As Double
Get
Return m_X
End Get
Set
m_X = Value
End Set
End Property
Private m_Y As Double
Public Property Y() As Double
Get
Return m_Y
End Get
Set
m_Y = Value
End Set
End Property
Private m_R As Double
Public Property R() As Double
Get
Return m_R
End Get
Set
m_R = Value
End Set
End Property
Private m_Fill As Double ' an optional value
Public Property Fill() As Double
Get
Return m_Fill
End Get
Set
m_Fill = Value
End Set
End Property
End Class
In C#:
public class ScatterShape
{
public List<List<Point>> Points { get; set; }
// a nested list of list of points
}
In VB:
Public Class ScatterShape
Public Property Points() As List(Of List(Of Point))
Get
Return m_Points
End Get
Set
m_Points = Value
End Set
End Property
Private m_Points As List(Of List(Of Point))
' a nested list of list of points
End Class