Hi
I am trying to render a pie chart label in Java as below.
chart.setLabelFormat("{value|yy-nn-dd hh:nn}"
+ "\\n" + "{value}%");
chart.setData(dataValues, labels);
My problem is pie chart always has the date displayed as 01-00-01 00:00.
However the "\\n" + "{value}%" is represented correctly.
Please note that the labels array contains the correct time in milliseconds represented as
String values.
How do I get my chart to represent the dates correctly?.
Thank you
Sofie |