Hello,
I am using JSF Chart Creator component and would like to set the axis range , is there a way to do that using the tag library.
NumberAxis domainAxis = (NumberAxis) plot.getDomainAxis();
domainAxis.setRange(-10.0, 10.0);
NumberAxis rangeAxis = (NumberAxis) plot.getRangeAxis();
rangeAxis.setRange(-10.0, 10.0);
Thanks.