You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you use 'SeparatorsPaint' and 'Legend' in 'ChangeSeriesInstance' of the sample program, the display will collapse.
'SeparatorsPaint' is displayed in a wrong order when used with 'DrawMarginFrame'.
The display position of 'Legend' is different every time. Characters disappear.
Version in which the problem occurred
--> beta.701
GeoSeries = new IGeoSeries[]
{
new HeatLandSeries
{
Lands = new HeatLand[]
{
new() { Name = "bra", Value = 13 },
new() { Name = "mex", Value = 10 },
new() { Name = "usa", Value = 15 },
new() { Name = "can", Value = 8 }
}
}
};
-->
GeoSeries = new IGeoSeries[]
{
new HeatLandSeries
{
Lands = new HeatLand[]
{
new() { Name = "bra", Value = 13 },
new() { Name = "mex", Value = 10 },
new() { Name = "usa", Value = 15 },
new() { Name = "can", Value = 8 }
}
}
};
DrawMarginFrame = new DrawMarginFrame
{
Stroke = new SolidColorPaint(SKColors.Black, 2),
};
YAxes = new Axis[]
{
new Axis
{
MinLimit = 0,
SeparatorsPaint = new SolidColorPaint
{
Color = SKColors.LightGray,
StrokeThickness = 2
},
}
};
The text was updated successfully, but these errors were encountered:
If you use 'SeparatorsPaint' and 'Legend' in 'ChangeSeriesInstance' of the sample program, the display will collapse.
'SeparatorsPaint' is displayed in a wrong order when used with 'DrawMarginFrame'.
The display position of 'Legend' is different every time. Characters disappear.
Version in which the problem occurred
--> beta.701
2023-02-08.14-32-47.mp4
.\LiveCharts2-master\samples\WPFSample\Test\ChangeSeriesInstance\View.xaml
Edit Code
<lvc:CartesianChart Grid.Row="1" Series="{Binding CartesianSeries}" />
-->
<lvc:CartesianChart Grid.Row="1" Series="{Binding CartesianSeries}" DrawMarginFrame="{Binding DrawMarginFrame}" YAxes="{Binding YAxes}" LegendPosition="Bottom" />
.\LiveCharts2-master\samples\ViewModelsSamples\Test\ChangeSeriesInstance\ViewModel.cs
Edit Code
-->
Edit Code
-->
The text was updated successfully, but these errors were encountered: