}
//---if we are generating an ImageMap, store the image coordinates
if( axisChart.getGenerateImageMapFlag() )
{
RectMapArea rectMapArea= createImageMapArea( axisChart.getYAxis().getAxisLabelsGroup(),
imageMapLabelIndex,
rectangle,
iAxisChartDataSet.getValue( 0, i ),
iAxisChartDataSet.getLegendLabel( 0 ) );
axisChart.getImageMap().addImageMapArea( rectMapArea );
imageMapLabelIndex--;
}
}
}
else
{
//---else, value is zero.
//---if we are generating an ImageMap, store the image coordinates
if( axisChart.getGenerateImageMapFlag() )
{
//---check if zero scale line is visible
//---make sure zero is even visible on the scale.
//---If zero is not visible on scale nothing will be clickable for that item
if( axisChart.getXAxis().getScaleCalculator().getMaxValue() >= 0
&& axisChart.getXAxis().getScaleCalculator().getMinValue() <= 0 )
{
rectangle.x = startingX;
rectangle.width = 1;
RectMapArea rectMapArea = createImageMapArea( axisChart.getYAxis().getAxisLabelsGroup(),
imageMapLabelIndex,
rectangle,
iAxisChartDataSet.getValue( 0, i ),
iAxisChartDataSet.getLegendLabel( 0 ) );