WPF Data Charting
Written by David Conrad   
Tuesday, 13 July 2010
Article Index
WPF Data Charting
Constructing a chart
A XAML approach

Scaling the axes

The resulting chart is fairly good but the default axes are scaled to just fit the data. A better presentation is obtained by specifying max and min values for both x and y:

NumericXAxis myXAxis = new NumericXAxis()
{
MaximumValue = 30,
MinimumValue = 0
};
NumericYAxis myYAxis = new NumericYAxis()
{
MaximumValue = 40,
MinimumValue = 0
};

With these changes the result is a very acceptable first attempt at a chart:

 

Chart1

 

A XAML alternative

Of course you can achieve the same results by specifying the axes and series using nothing but XAML. All you have to do is write the XAML tags that create the same objects. The only complication is that as the data set is defined in code we have to set the DataContext in code as well - it is difficult to refer to object created in code within XAML. 

We start off with the opening XAML tag for the component itself:

<ig:XamDataChart HorizontalAlignment="Left" 
Margin="129,53,0,0"
Name="xamDataChart1"
VerticalAlignment="Top"
Height="218" Width="317" >

Next we need to define the axes within the Axes property of the control:

 <ig:XamDataChart.Axes>
<ig:NumericXAxis Name="myXAxis"
MaximumValue="50"
MinimumValue="0">
</ig:NumericXAxis>
<ig:NumericYAxis Name="myYAxis"
MaximumValue="50"
MinimumValue="0">
</ig:NumericYAxis>
</ig:XamDataChart.Axes>

Finally we define the series and close the opening tag:

 <ig:XamDataChart.Series>
<ig:ScatterSeries  Name="scat"
XMemberPath="point.X"
YMemberPath="point.Y"
XAxis="{Binding ElementName=myXAxis}"
YAxis="{Binding ElementName=myYAxis}">
</ig:ScatterSeries>
</ig:XamDataChart.Series>
</ig:XamDataChart>

Now all we have to do in code is set the DataContext and the Series ItemSource:

xamDataChart1.DataContext = data;
scat.ItemsSource = data;

The result is the same as the previous code-generated chart. Of course you can generate the data in XAML as well as the chart, but this isn't particularly realistic. Most data charting projects work best with some XAML and some code.

You can also create charts using Expression Blend. But the point is that now you understand the way data interacts with the DataChart component you can quickly graduate to the sort of impressive examples you can see on the Infragistics website, no matter what method you use.


 

Banner


Setting Up Site-To-Site OpenVPN

Setting up a point-to-point VPN is relatively easy but site-to-site is much more complicated involving certificates and more IP addresses than you can count. Find out how to do it using OpenVPN.



The Minimum Spanning Tree - Prim's Algorithm In Python

Finding the minimum spanning tree is one of the fundamental algorithms and it is important in computer science and practical programming. We take a look at the theory and the practice and discover how [ ... ]


Other Projects

<ASIN:0672331195>

<ASIN:1430231629>

<ASIN:0470502266>

<ASIN:0596159838>



Last Updated ( Thursday, 19 August 2010 )