Files
GSS2Rework/GSS2.UI.Core/Views/ResourceChartView.axaml
T
amkovkov 55260e0360 refactor: ResouceView
Move ResourceView and all related to ui core namespace GSS2.UI.Core
Split ResourceView on separate elements
Make parts folding depended on size
2026-02-06 08:19:18 +03:00

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>