mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-14 13:16:38 +08:00
项目结构调整
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
using System;
|
||||
using System.Windows.Forms;
|
||||
using LiveCharts;
|
||||
using LiveCharts.Defaults;
|
||||
using LiveCharts.Wpf;
|
||||
|
||||
namespace Winforms.Cartesian.Labels
|
||||
{
|
||||
public partial class Labels : Form
|
||||
{
|
||||
public Labels()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void Labels_Load(object sender, EventArgs e)
|
||||
{
|
||||
cartesianChart1.Series.Add(new ColumnSeries
|
||||
{
|
||||
Values = new ChartValues<ObservableValue>
|
||||
{
|
||||
new ObservableValue(4),
|
||||
new ObservableValue(2),
|
||||
new ObservableValue(8),
|
||||
new ObservableValue(2),
|
||||
new ObservableValue(3),
|
||||
new ObservableValue(0),
|
||||
new ObservableValue(1),
|
||||
},
|
||||
DataLabels = true,
|
||||
LabelPoint = point => point.Y + "K"
|
||||
});
|
||||
|
||||
cartesianChart1.AxisX.Add(new Axis
|
||||
{
|
||||
Labels = new[]
|
||||
{
|
||||
"Shea Ferriera",
|
||||
"Maurita Powel",
|
||||
"Scottie Brogdon",
|
||||
"Teresa Kerman",
|
||||
"Nell Venuti",
|
||||
"Anibal Brothers",
|
||||
"Anderson Dillman"
|
||||
},
|
||||
Separator = new Separator // force the separator step to 1, so it always display all labels
|
||||
{
|
||||
Step = 1,
|
||||
IsEnabled = false //disable it to make it invisible.
|
||||
},
|
||||
LabelsRotation = 15
|
||||
});
|
||||
|
||||
cartesianChart1.AxisY.Add(new Axis
|
||||
{
|
||||
LabelFormatter = value => value + ".00K items",
|
||||
Separator = new Separator()
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user