mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-07 10:10:49 +08:00
41 lines
2.1 KiB
XML
41 lines
2.1 KiB
XML
<UserControl x:Class="Wpf.CartesianChart.ConstantChanges.ConstantChangesChart"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:lvc="clr-namespace:LiveCharts.Wpf;assembly=LiveCharts.Wpf"
|
|
xmlns:constantChanges="clr-namespace:Wpf.CartesianChart.ConstantChanges"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="300" d:DesignWidth="300" d:DataContext="{d:DesignInstance constantChanges:ConstantChangesChart}">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<Button Grid.Row="0" Click="InjectStopOnClick">
|
|
Inject/Stop Data
|
|
</Button>
|
|
<!--Here we disable tooltips and hovering to get a better performance-->
|
|
<lvc:CartesianChart Grid.Row="1" AnimationsSpeed="0:0:0.5" Hoverable="False" DataTooltip="{x:Null}">
|
|
<lvc:CartesianChart.Series>
|
|
<lvc:LineSeries Values="{Binding ChartValues}"
|
|
PointGeometry="{x:Null}"
|
|
LineSmoothness="1"
|
|
StrokeThickness="6"
|
|
Stroke="#F34336"
|
|
Fill="Transparent"/>
|
|
</lvc:CartesianChart.Series>
|
|
<lvc:CartesianChart.AxisX>
|
|
<lvc:Axis LabelFormatter="{Binding DateTimeFormatter}"
|
|
MaxValue="{Binding AxisMax}"
|
|
MinValue="{Binding AxisMin}"
|
|
Unit="{Binding AxisUnit}">
|
|
<lvc:Axis.Separator>
|
|
<lvc:Separator Step="{Binding AxisStep}" />
|
|
</lvc:Axis.Separator>
|
|
</lvc:Axis>
|
|
</lvc:CartesianChart.AxisX>
|
|
</lvc:CartesianChart>
|
|
</Grid>
|
|
</UserControl>
|