-
Notifications
You must be signed in to change notification settings - Fork 594
/
Copy pathViewModel.cs
122 lines (100 loc) · 3.54 KB
/
ViewModel.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
using System;
using System.Collections.ObjectModel;
using System.Linq;
using CommunityToolkit.Mvvm.Input;
using LiveChartsCore;
using LiveChartsCore.Defaults;
using LiveChartsCore.Kernel.Events;
using LiveChartsCore.Kernel.Sketches;
using LiveChartsCore.SkiaSharpView;
using LiveChartsCore.SkiaSharpView.Drawing;
using LiveChartsCore.SkiaSharpView.Painting;
using SkiaSharp;
namespace ViewModelsSamples.General.Scrollable;
public partial class ViewModel
{
private bool _isDown = false;
private readonly ObservableCollection<ObservablePoint> _values = [];
public ISeries[] Series { get; set; }
public Axis[] ScrollableAxes { get; set; }
public ISeries[] ScrollbarSeries { get; set; }
public Axis[] InvisibleX { get; set; }
public Axis[] InvisibleY { get; set; }
public LiveChartsCore.Measure.Margin Margin { get; set; }
public RectangularSection[] Thumbs { get; set; }
public ViewModel()
{
var trend = 1000;
var r = new Random();
for (var i = 0; i < 500; i++)
_values.Add(new ObservablePoint(i, trend += r.Next(-20, 20)));
Series = [
new LineSeries<ObservablePoint>
{
Values = _values,
GeometryStroke = null,
GeometryFill = null,
DataPadding = new(0, 1)
}
];
ScrollbarSeries = [
new LineSeries<ObservablePoint>
{
Values = _values,
GeometryStroke = null,
GeometryFill = null,
DataPadding = new(0, 1)
}
];
ScrollableAxes = [new Axis()];
Thumbs = [
new RectangularSection
{
Fill = new SolidColorPaint(new SKColor(255, 205, 210, 100))
}
];
InvisibleX = [new Axis { IsVisible = false }];
InvisibleY = [new Axis { IsVisible = false }];
// force the left margin to be 100 and the right margin 50 in both charts, this will
// align the start and end point of the "draw margin",
// no matter the size of the labels in the Y axis of both chart.
var auto = LiveChartsCore.Measure.Margin.Auto;
Margin = new(100, auto, 50, auto);
}
[RelayCommand]
public void ChartUpdated(ChartCommandArgs args)
{
var cartesianChart = (ICartesianChartView<SkiaSharpDrawingContext>)args.Chart;
var x = cartesianChart.XAxes.First();
// update the scroll bar thumb when the chart is updated (zoom/pan)
// this will let the user know the current visible range
var thumb = Thumbs[0];
thumb.Xi = x.MinLimit;
thumb.Xj = x.MaxLimit;
}
[RelayCommand]
public void PointerDown(PointerCommandArgs args)
{
_isDown = true;
}
[RelayCommand]
public void PointerMove(PointerCommandArgs args)
{
if (!_isDown) return;
var chart = (ICartesianChartView<SkiaSharpDrawingContext>)args.Chart;
var positionInData = chart.ScalePixelsToData(args.PointerPosition);
var thumb = Thumbs[0];
var currentRange = thumb.Xj - thumb.Xi;
// update the scroll bar thumb when the user is dragging the chart
thumb.Xi = positionInData.X - currentRange / 2;
thumb.Xj = positionInData.X + currentRange / 2;
// update the chart visible range
ScrollableAxes[0].MinLimit = thumb.Xi;
ScrollableAxes[0].MaxLimit = thumb.Xj;
}
[RelayCommand]
public void PointerUp(PointerCommandArgs args)
{
_isDown = false;
}
}