Search found 2 matches

by guillaume
Fri Feb 22, 2013 4:17 pm
Forum: Java
Topic: How to draw a shape on the chart
Replies: 2
Views: 7459

Re: How to draw a shape on the chart

to be more precise : the previous code is

Code: Select all


 new ChartPaintAdapter()
            {
                public void chartPainted(ChartDrawEvent e)
                {
                    IGraphics3D g = tchart.getGraphics3D();
...
}
}
}
by guillaume
Fri Feb 22, 2013 4:11 pm
Forum: Java
Topic: How to draw a shape on the chart
Replies: 2
Views: 7459

How to draw a shape on the chart

Hello I want to draw shape orto fill rectangle on the chart. It is used as limits. like this : ex.png I am using the android version. I was able to draw a line : IGraphics3D g = tchart.getGraphics3D(); if (serie!= null) { Point pfrom = new Point(serie.calcXPos(0), serie.calcYPosValue(seuilValue)); P...