Axis Style
The [ObservableObject]
, [ObservableProperty]
and [RelayCommand]
attributes come from the
CommunityToolkit.Mvvm package, you can read more about it
here.
This web site wraps every sample using a UserControl
instance, but LiveCharts controls can be used inside any container.
View model
using System.Collections.Generic;
using CommunityToolkit.Mvvm.ComponentModel;
using LiveChartsCore;
using LiveChartsCore.Defaults;
using LiveChartsCore.Drawing;
using LiveChartsCore.SkiaSharpView;
using LiveChartsCore.SkiaSharpView.Painting;
using LiveChartsCore.SkiaSharpView.Painting.Effects;
using SkiaSharp;
namespace ViewModelsSamples.Axes.Style;
public partial class ViewModel : ObservableObject
{
private static readonly SKColor s_gray = new(195, 195, 195);
private static readonly SKColor s_gray1 = new(160, 160, 160);
private static readonly SKColor s_gray2 = new(90, 90, 90);
private static readonly SKColor s_dark3 = new(60, 60, 60);
public ISeries[] Series { get; set; } =
{
new LineSeries<ObservablePoint>
{
Values = Fetch(),
Stroke = new SolidColorPaint(new SKColor(33, 150, 243), 4),
Fill = null,
GeometrySize = 0
}
};
public Axis[] XAxes { get; set; } =
{
new Axis
{
Name = "X axis",
NamePaint = new SolidColorPaint(s_gray1),
TextSize = 18,
Padding = new Padding(5, 15, 5, 5),
LabelsPaint = new SolidColorPaint(s_gray),
SeparatorsPaint = new SolidColorPaint
{
Color = s_gray,
StrokeThickness = 1,
PathEffect = new DashEffect(new float[] { 3, 3 })
},
SubseparatorsPaint = new SolidColorPaint
{
Color = s_gray2,
StrokeThickness = 0.5f
},
SubseparatorsCount = 9,
ZeroPaint = new SolidColorPaint
{
Color = s_gray1,
StrokeThickness = 2
},
TicksPaint = new SolidColorPaint
{
Color = s_gray,
StrokeThickness = 1.5f
},
SubticksPaint = new SolidColorPaint
{
Color = s_gray,
StrokeThickness = 1
}
}
};
public Axis[] YAxes { get; set; } =
{
new Axis
{
Name = "Y axis",
NamePaint = new SolidColorPaint(s_gray1),
TextSize = 18,
Padding = new Padding(5, 0, 15, 0),
LabelsPaint = new SolidColorPaint(s_gray),
SeparatorsPaint = new SolidColorPaint
{
Color = s_gray,
StrokeThickness = 1,
PathEffect = new DashEffect(new float[] { 3, 3 })
},
SubseparatorsPaint = new SolidColorPaint
{
Color = s_gray2,
StrokeThickness = 0.5f
},
SubseparatorsCount = 9,
ZeroPaint = new SolidColorPaint
{
Color = s_gray1,
StrokeThickness = 2
},
TicksPaint = new SolidColorPaint
{
Color = s_gray,
StrokeThickness = 1.5f
},
SubticksPaint = new SolidColorPaint
{
Color = s_gray,
StrokeThickness = 1
}
}
};
public DrawMarginFrame Frame { get; set; } =
new()
{
Fill = new SolidColorPaint(s_dark3),
Stroke = new SolidColorPaint
{
Color = s_gray,
StrokeThickness = 1
}
};
private static List<ObservablePoint> Fetch()
{
var list = new List<ObservablePoint>();
var fx = EasingFunctions.BounceInOut;
for (var x = 0f; x < 1f; x += 0.001f)
{
var y = fx(x);
list.Add(new ObservablePoint(x - 0.5, y - 0.5));
}
return list;
}
}
XAML
<UserControl
x:Class="UnoWinUISample.Axes.Style.View"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:lvc="using:LiveChartsCore.SkiaSharpView.WinUI"
xmlns:vms="using:ViewModelsSamples.Axes.Style"
mc:Ignorable="d">
<UserControl.DataContext>
<vms:ViewModel/>
</UserControl.DataContext>
<Grid Background="#333333">
<lvc:CartesianChart
Margin="20"
Series="{Binding Series}"
XAxes="{Binding XAxes}"
YAxes="{Binding YAxes}"
DrawMarginFrame="{Binding Frame}"
ZoomMode="Both"
TooltipPosition="Hidden">
</lvc:CartesianChart>
</Grid>
</UserControl>