We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi everyone, It seems like the lower boundary is ignored - it should be reproducible using the following code. The upper boundary works fine.
Backing Bean
lineChartModel = new LineChartModel(); lineChartModel.setAspectRatio(AspectRatio.DOUBLE_OCTAVE); lineChartModel.setShowArea(true); lineChartModel.setFullWidth(true); lineChartModel.setLow(0); lineChartModel.setHigh(100); lineChartModel.setShowPoint(false); Axis xAxis = lineChartModel.getAxis(AxisType.X); xAxis.setShowLabel(false); LineChartSeries cpuUsage = new LineChartSeries(); for (int i = 0; i < 21; i++) { lineChartModel.addLabel(i); cpuUsage.set(ThreadLocalRandom.current().nextInt(30, 50 + 1)); } lineChartModel.addSeries(cpuUsage);
Screenshot
The text was updated successfully, but these errors were encountered:
Workaround: setLow(1)
setLow(1)
Sorry, something went wrong.
No branches or pull requests
Hi everyone,
It seems like the lower boundary is ignored - it should be reproducible using the following code.
The upper boundary works fine.
Backing Bean
Screenshot
The text was updated successfully, but these errors were encountered: