Replies: 1 comment
-
|
Also note that units are chartvalues: Dim rayLine As New LineVisual(Of LiveChartsCore.SkiaSharpView.Drawing.Geometries.LineGeometry) With {
.X = X1,
.Y = Y1,
.Width = X2 - X1, ' extendX - X1,
.Height = Y2 - Y1, ' extendY - Y1,
.LocationUnit = MeasureUnit.ChartValues,
.SizeUnit = MeasureUnit.ChartValues,
.Stroke = New SolidColorPaint With {
.Color = ColorParser(Me.StrokeColor),
.StrokeThickness = Me.StrokeThickness
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Why is chart drawing down (-3), and not up +3 for height? Note that if I change height to negative value it doesn't have any effect.
Beta Was this translation helpful? Give feedback.
All reactions