|
|
|
|
|
|
|
|
|
Re: Hexadecimal values on bar chart [message #805361 is a reply to message #804517] |
Thu, 23 February 2012 12:11  |
Eclipse User |
|
|
|
This is an issue with the area chart type. You can bump the chart to
the left with some script but it will not extend to the furthest point
to the right. For example put a script like this in:
function beforeDrawSeries( series, seriesRenderer, context )
{
if( series.getSeriesIdentifier() == "Series 1" ||
series.getSeriesIdentifier() == "Series 2"){
var dpharray =
seriesRenderer.getSeriesRenderingHints().getDataPoints();
for( j=0;j<dpharray.length;j++){
var xval = dpharray[j].getLocation().getX();
dpharray[j].getLocation().setX(xval-100);
}
}
}
Jason
On 2/22/2012 1:18 PM, cankovicv wrote:
> You are GENIUS!!! I can't thank you enough!!!!
>
> This is exactly what I wanted (similar to the first graphic) and it looks very nice:)
> Just one more little question- can I somehowe move this graph to the left to assemble it to the y and x axis?
> Thank you Jason once again!!!
>
>
|
|
|
Powered by
FUDForum. Page generated in 0.20101 seconds