I am trying to do the following for the x labels in my graph.
The first label should have format:
plot.getGraphWidget()
.setDomainValueFormat(new SimpleDateFormat("dd/MM/yyyy hh:mm:ss"));
All the other labels should only show minutes and seconds:
plot.getGraphWidget()
.setDomainValueFormat(new SimpleDateFormat("mm:ss"));
I can set the Format for all labels, but I can't figure out how to change it for only the first label. My graph is dynamic and changes every second (incoming data gets updated each second with a new value).
Is there maybe a function that could help me? (It's all a bit difficult to find with website being down...) Or any other tips?
Any help is greatly appreciated.