项目结构调整

This commit is contained in:
艾竹
2023-04-16 20:11:40 +08:00
parent cbfbf96033
commit 81f91f3f35
2124 changed files with 218 additions and 5516 deletions

View File

@@ -0,0 +1,51 @@
using System.Windows.Forms;
using LiveCharts;
using LiveCharts.Wpf;
namespace Winforms.Cartesian.BasicBar
{
public partial class BasicRowExample : Form
{
public BasicRowExample()
{
InitializeComponent();
cartesianChart1.Series = new SeriesCollection
{
new RowSeries
{
Title = "2015",
Values = new ChartValues<double> { 10, 50, 39, 50 }
}
};
//adding series will update and animate the chart automatically
cartesianChart1.Series.Add(new RowSeries
{
Title = "2016",
Values = new ChartValues<double> { 11, 56, 42 }
});
//also adding values updates and animates the chart automatically
cartesianChart1.Series[1].Values.Add(48d);
cartesianChart1.AxisY.Add(new Axis
{
Labels = new[] { "Maria", "Susan", "Charles", "Frida" }
});
cartesianChart1.AxisX.Add(new Axis
{
LabelFormatter = value => value.ToString("N")
});
var tooltip = new DefaultTooltip
{
SelectionMode = TooltipSelectionMode.SharedYValues
};
cartesianChart1.DataTooltip = tooltip;
}
}
}