2. 创建一个WPF程序,并且引用WPFVisifire.Charts.dll,并且在您的代码里引用
using Visifire.Charts
using Visifire.Commons
3. 添加代码并且创建和显示图表,在该事例中图表显示在LayoutRoot里,是一个Grid容器,默认情况下Grid是空白的,必须为该Grid指定一个x:Name="LayoutRoot"
4.同样地,可以通过修改Height和Width来改变图表的显示大小
5.在Window1.xaml.cs里我们可以开始创建图表了,在 Window1()事件里添加一个CreateChart()函数,在CreateChart()里创建图表,具体代码如下:
public Window1()
{
InitializeComponent()
// Call function to create chart
CreateChart()
}
private void CreateChart()
{
// Create a Chart element
Chart chart = new Chart()
// Set chart width and height
chart.Width = 400
chart.Height = 300
// Create new DataSeries
DataSeries dataSeries = new DataSeries()
// Number of DataPoints to be generated
int numberOfDataPoints = 10
// To set the YValues of DataPoint
Random random = new Random()
// Loop and add a few DataPoints
for (int loopIndex = 0loopIndex <numberOfDataPointsloopIndex++)
{
// Create a DataPoint
DataPoint dataPoint = new DataPoint()
// Set the YValue using random number
dataPoint.YValue = random.Next(1, 100)
// Add DataPoint to DataSeries
dataSeries.DataPoints.Add(dataPoint)
}
// Add DataSeries to Chart
chart.Series.Add(dataSeries)
// Add chart to the LayoutRoot for display
LayoutRoot.Children.Add(chart)
}
WPF的toolkit里有自带的chart控件的。如果你只想做些简单的图表展示就够了。如果你要有很好的用户体验和比较多的图表设置,可以使用第三方控件中的Chart。推荐Visifire的Chart控件,它家是专门做wpf,silverlight,wp的图表控件的。希望对你的回答有帮助。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)