Search found 54 matches

by Dmitry
Tue Aug 18, 2009 11:55 am
Forum: Java
Topic: Pie and marks
Replies: 4
Views: 11338

Pie and marks

Image

How can i do that marks don't put over each other?

Dmitry
by Dmitry
Tue Aug 04, 2009 1:10 pm
Forum: Java
Topic: Problem with setRoundFirstLabel
Replies: 7
Views: 13927

Re: Problem with setRoundFirstLabel

Yes I use function setMinMax(c1, c2) c1=00:00:00 c2=23:59:59

if set setRoundFirstLabel = true first vertical axis is 4:00:00 ( for my GMT +3)
if i set GMT+0 first vertical axis is 00:00:00 ( correct for me)
by Dmitry
Sun Aug 02, 2009 4:52 pm
Forum: Java
Topic: Problem with setRoundFirstLabel
Replies: 7
Views: 13927

Re: Problem with setRoundFirstLabel

I've decided my problem so TimeZone.setDefault(TimeZone.getTimeZone("GMT+0"));
I'm waiting your bug fix.
Best regards
Dmitry
by Dmitry
Fri Jul 31, 2009 5:48 pm
Forum: Java
Topic: Problem with setRoundFirstLabel
Replies: 7
Views: 13927

Re: Problem with setRoundFirstLabel

How can I set first Label for DateTime axis?
by Dmitry
Fri Jul 31, 2009 3:40 pm
Forum: Java
Topic: Problem with setRoundFirstLabel
Replies: 7
Views: 13927

Re: Problem with setRoundFirstLabel

Set chart.getAxes().getBottom().getLabels().setDateTimeFormat("d 00:00"); is not correctly. Just you changed label but not axis. I'l like that FIRST axis set to 00:00 and next... next... next I use area chart with series.setStairs(true); and I set left border to 00:00:00(N - value) and right border ...
by Dmitry
Fri Jul 31, 2009 2:24 pm
Forum: Java
Topic: setLegendResolver and text delimiter
Replies: 4
Views: 8763

Re: setLegendResolver and text delimiter

I have done so public String getItemText(Legend legend, LegendStyle legendStyle, int index, String text) { char sp = (char) 6; String [] arr = text.split(Character.toString(sp)); String value = arr[0].replace(",", ""); return ShopTSMFunction.getStringSizeStorage(value, "M")+Character.toString(sp)+ar...
by Dmitry
Fri Jul 31, 2009 2:03 pm
Forum: Java
Topic: Problem with setRoundFirstLabel
Replies: 7
Views: 13927

Problem with setRoundFirstLabel

http://www.s-iberia.com/graph.jpg chart.getAxes().getBottom().getLabels().setDateTimeFormat("d hh:mm"); chart.getAxes().getBottom().setIncrement(Utils.getDateTimeStep(DateTimeStep.ONEDAY)); chart.getAxes().getBottom().getTitle().setText("Date"); chart.getAxes().getBottom().getLabels().setRoundFirst...
by Dmitry
Fri Jul 31, 2009 1:30 pm
Forum: Java
Topic: setLegendResolver and text delimiter
Replies: 4
Views: 8763

Re: setLegendResolver and text delimiter

with bank is not working too. public String getItemText(Legend legend, LegendStyle legendStyle, int index, String text) { String [] arr = text.split("\\s+");// blank space character return ShopTSMFunction.getStringSizeStorage(text, "M"); } result arr[0] only - 832,563.18HSMNODE 8 56 3 51 2 50 , 44 5...
by Dmitry
Fri Jul 31, 2009 12:31 pm
Forum: Java
Topic: setLegendResolver and text delimiter
Replies: 4
Views: 8763

setLegendResolver and text delimiter

chart.setLegendResolver(new LegendResolver() { public Rectangle getBounds(Legend arg0, Rectangle rectangle) { return rectangle; } public LegendItemCoordinates getItemCoordinates(Legend arg0, LegendItemCoordinates coordinates) { return coordinates; } public String getItemText(Legend legend, LegendSt...