赞
踩
1.概要
1.1 说明
1.2 环境准备
NuGet 添加插件安装
2.代码
- <Window x:Class="WpfApp3.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:lvc="clr-namespace:LiveCharts.Wpf;assembly=LiveCharts.Wpf"
- xmlns:local="clr-namespace:WpfApp3"
- mc:Ignorable="d"
- Title="MainWindow" Height="450" Width="800">
- <Grid>
- <lvc:CartesianChart LegendLocation="Bottom" >
- <lvc:CartesianChart.Series>
- <lvc:LineSeries Fill="LightGreen" Stroke="Green"
- Values="12,34,55,40,30,54,26" Title="消费" DataLabels="True"/>
- </lvc:CartesianChart.Series>
- </lvc:CartesianChart>
- </Grid>
- </Window>
- using System.Text;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Data;
- using System.Windows.Documents;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Imaging;
- using System.Windows.Navigation;
- using System.Windows.Shapes;
- using LiveCharts;
- using LiveCharts.Wpf;
-
- namespace WpfApp3
- {
- /// <summary>
- /// Interaction logic for MainWindow.xaml
- /// </summary>
- public partial class MainWindow : Window
- {
- public MainWindow()
- {
- InitializeComponent();
- }
- }
- }
3.运行效果
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。