Hello,
If I set chart.setShowDataValues(Boolean.TRUE) for a bar chart, all of the data values appear nicely at the end of the bars except, the largest bar's value becomes truncated. Instead of showing 30, it shows 3.
Thanks
FF 24.6.0
SmartClient Version: v9.1p_2014-06-17/Pro Deployment (built 2014-06-17)
If I set chart.setShowDataValues(Boolean.TRUE) for a bar chart, all of the data values appear nicely at the end of the bars except, the largest bar's value becomes truncated. Instead of showing 30, it shows 3.
Thanks
Code:
final FacetChart chart = new FacetChart(); chart.setData(aRecordList); chart.setFacets(new Facet("name", "Type")); chart.setValueProperty("count"); chart.setChartType(ChartType.BAR); chart.setShowDataValues(Boolean.TRUE); chart.setWidth(300); chart.setHeight(300); Window window = new Window(); window.setWidth(410); window.setHeight(410); window.addItem(chart); window.show();
SmartClient Version: v9.1p_2014-06-17/Pro Deployment (built 2014-06-17)
Comment