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
Hi,
I created a Graph with 4 horizontal lines (Amenadiel\JpGraph\Plot\PlotLine) and a GroupBarPlot (Amenadiel\JpGraph\Plot\GroupBarPlot).
If I call Graph->GetPlotsYMinMax(...) the horizontal lines will be stripped out for calculation, which is fine.
But in line 2807 your array index is initialized with 0 but the GroupBarPlot object has the index 4.
Better would be to rather do a foreach() { .... }' than do { ... } while' because the latter doesn't recognizes the GroupBarPlot at position 4 and raises an error in line 2820.
Thank you.
The text was updated successfully, but these errors were encountered:
Hi,
I created a Graph with 4 horizontal lines (Amenadiel\JpGraph\Plot\PlotLine) and a GroupBarPlot (Amenadiel\JpGraph\Plot\GroupBarPlot).
If I call
Graph->GetPlotsYMinMax(...)
the horizontal lines will be stripped out for calculation, which is fine.But in line 2807 your array index is initialized with 0 but the GroupBarPlot object has the index 4.
Better would be to rather do a
foreach() { .... }' than
do { ... } while' because the latter doesn't recognizes the GroupBarPlot at position 4 and raises an error in line 2820.Thank you.
The text was updated successfully, but these errors were encountered: