-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
If I take this base code:
GUIChartEditor.BeginChart(0, 400, 0, 200, Color.black,
GUIChartEditorOptions.ChartBounds(0, 10, 0, 10),
GUIChartEditorOptions.SetOrigin(ChartOrigins.BottomLeft),
GUIChartEditorOptions.ShowAxes(Color.white)
);
GUIChartEditor.PushPoint(new Vector2(0, 5), Color.red);
GUIChartEditor.PushPoint(new Vector2(5, 5), Color.red);
GUIChartEditor.PushPoint(new Vector2(10, 5), Color.red);
GUIChartEditor.EndChart();
Which is the expected result.
If I set a negative minimum X, like:
GUIChartEditorOptions.ChartBounds(-10, 10, 0, 10),
Also correct, expected result.
However, if I set a positive minimum value, like:
GUIChartEditorOptions.ChartBounds(5, 10, 0, 10),
I would expect to see a red dot on the left, and right in this case? Also I note the white y axis line is displaying on the right side of the image which is also unexpected?
kondziu2504
Metadata
Metadata
Assignees
Labels
No labels


