Search found 2 matches
- Fri Feb 24, 2012 12:34 pm
- Forum: JFreeChart - Stockmarket
- Topic: itemlabel for HighLowChart (and image labels)
- Replies: 14
- Views: 279510
Re: itemlabel for HighLowChart (and image labels)
You could look at the way it is implemented in XYLineAndShapeRenderer: 1195 // draw the item label if there is one... 1196 if (isItemLabelVisible(series, item)) { 1197 drawItemLabel(g2, orientation, dataset, series, item, xx, yy, 1198 (y1 < 0.0)); 1199 } I'm not sure what is the right way to handle...
- Sun Feb 19, 2012 1:34 am
- Forum: JFreeChart - Stockmarket
- Topic: itemlabel for HighLowChart (and image labels)
- Replies: 14
- Views: 279510
Re:
How does one have to implement that? Is there another renderer where one could pinch an idea how to do it?david.gilbert wrote:HighLowRenderer is one of the renderers that doesn't yet support item labels.