A 3D bar chart with pointer annotations. The condition is that i have to use a CategoryPlot, and a Bar3DRenderer to draw the chart.
Code: Select all
| |
| |
| |
| | _________
| | /_________/|
| | | | |
| | | <--------------- Your current coverage
| | | | |
| | | | |
| |____________| | |_______________
|/_____________ |________|/________________
I am able to draw the 3D bar successfully. But the problems which i am having with annotations are as follows:
1] How to add a pointer annotation to a CategoryPlot, will i have to create my own class ?
2] I am given the starting position of annotation in terms of co-ordinates. Though CategoryAnnotation class requires category name and y-value. How can i specify the x-coordinate?
Is there some API which can map a category name to x- location on a CategoryPlot and vice versa ?
3] If i am given x-location as distance from RangeAxis in pixels, how can i have simulate this effect on CategoryPlot ?
Thanks,