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)
}
关于这个效果的实现。你可以参考:随机安装 Demo ControlExplorer_2010 中 DataBinding.aspx 页面的做法:C:\Users\你的用户名\Documents\ComponentOne Samples\Studio for ASP.NET Wijmo\ASP.NET WebForms\CS\ControlExplorer\C1BarChart欢迎分享,转载请注明来源:内存溢出
评论列表(0条)