1. 使用System.Windows.Shapes命名空间
<Window x:Class="WpfApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Chart Example" Height="350" Width="525">
<Canvas>
<Line X1="10" Y1="10" X2="100" Y2="100" Stroke="Black" />
<Rectangle Width="50" Height="50" Fill="Blue" Canvas.Left="200" Canvas.Top="100" />
<Ellipse Width="50" Height="50" Fill="Red" Canvas.Left="300" Canvas.Top="100" />
</Canvas>
</Window>
简单直观,适合简单的图形绘制。
无需额外的库或控件。
功能有限,不适合复杂的图表。
不支持图表的动态更新。
当需要在WPF界面中绘制简单的图形或图表时。
当不需要动态数据交互或图表更新时。
2. 使用LiveCharts
<Window x:Class="WpfApp.MainWindow"
xmlns:lvc="clr-namespace:LiveCharts.Wpf;assembly=LiveCharts.Wpf"
Title="LiveCharts Example" Height="350" Width="525">
<Grid>
<lvc:CartesianChart>
<lvc:CartesianChart.Series>
<lvc:LineSeries Values="{Binding SeriesValues}" />
</lvc:CartesianChart.Series>
</lvc:CartesianChart>
</Grid>
</Window>
功能强大,支持多种图表类型。
支持动画和交互。
可以轻松绑定到数据源。
需要安装LiveCharts库。
相对于简单图形,性能开销较大。
当需要生成复杂的交互式图表时。
当需要图表支持动画和动态数据更新时。
3. 使用OxyPlot
<Window x:Class="WpfApp.MainWindow"
xmlns:oxy="http://oxyplot.org/wpf"
Title="OxyPlot Example" Height="350" Width="525">
<Grid>
<oxy:PlotView Model="{Binding MyModel}" />
</Grid>
</Window>
跨平台支持,可用于WPF、Xamarin等。
丰富的图表类型和自定义选项。
支持交互和动态更新。
需要安装OxyPlot库。
学习曲线相对较陡。
当需要在多个平台上生成图表时。
当需要高度自定义图表时。
4. 使用DevExpress WPF Charts
<Window x:Class="WpfApp.MainWindow"
xmlns:dxc="http://schemas.devexpress.com/winfx/2008/xaml/charts"
Title="DevExpress Charts Example" Height="350" Width="525">
<dxc:ChartControl>
<dxc:ChartControl.Series>
<dxc:Series ArgumentDataMember="Date" ValueDataMember="Value" />
</dxc:ChartControl.Series>
</dxc:ChartControl>
</Window>
功能丰富,提供多种图表类型和自定义选项。
支持交互和数据绑定。
提供专业的技术支持。
是商业软件,需要购买许可证。
相对较大的性能开销。
当需要专业的图表解决方案时。
当需要企业级技术支持时。
5. 使用Microsoft Office Interop
using Excel = Microsoft.Office.Interop.Excel;
using Word = Microsoft.Office.Interop.Word;
public void CreateChartInExcel()
{
var excelApp = new Excel.Application();
Excel.Workbook workbook = excelApp.Workbooks.Add();
Excel.Worksheet worksheet = (Excel.Worksheet)workbook.Worksheets[1];
Excel.ChartObjects chartObjects = worksheet.ChartObjects();
// Add a chart
Excel.ChartObject myChart = chartObjects.Add(100, 50, 375, 225);
Excel.Chart chart = myChart.Chart;
chart.SetSourceData(worksheet.Range["A1:B10"]);
chart.ChartType = Excel.XlChartType.xlColumnClustered;
excelApp.Visible = true;
}
可以利用Microsoft Office的强大功能。
适合生成复杂的图表和报告。
需要安装Microsoft Office。
性能开销大,不适合频繁操作。
当需要生成报告并导出到Excel时。
当需要利用Office的图表功能时。
总结
往期精品推荐: