forked from amkovkov/GranuSightSoftware2
Move ResourceView and all related to ui core namespace GSS2.UI.Core Split ResourceView on separate elements Make parts folding depended on size
14 lines
629 B
XML
14 lines
629 B
XML
<lvc:CartesianChart xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="using:GSS2.UI.Core.ViewModels"
|
|
xmlns:lvc="using:LiveChartsCore.SkiaSharpView.Avalonia"
|
|
x:Class="GSS2.UI.Core.Views.ResourceChartView"
|
|
x:DataType="vm:ResourceChartViewModel"
|
|
Series="{Binding Series}"
|
|
YAxes="{Binding YAxes}"
|
|
XAxes="{Binding XAxes}"
|
|
ZoomMode="None"
|
|
EasingFunction="{x:Null}"
|
|
Bounds="{Binding Bounds, Mode=OneWayToSource}">
|
|
</lvc:CartesianChart>
|