How can I can the bar width in verticalbar chart?
nurettin
Bar width in verticalbar chart
Re: Bar width in verticalbar chart
Unfortunately you can'tnurettin wrote:How can I can the bar width in verticalbar chart?
nurettin

Lot's of people have asked for this feature now, I wonder if it would be possible to sub-class the vertical bar chart and produce one where you can specify this ?
seeting bar width is vertical bar chart
there is no direct method. coz it auto caluclates based on the foll values. so just manipulate these 3 values and set the bar width as u want.these values are currently based on what i have set for my chart my chart.
CategoryAxis domainAxis=plot.getDomainAxis();
domainAxis.setCategoryMargin(0.3);
domainAxis.setUpperMargin(0.15);
domainAxis.setLowerMargin(0.05);
CategoryAxis domainAxis=plot.getDomainAxis();
domainAxis.setCategoryMargin(0.3);
domainAxis.setUpperMargin(0.15);
domainAxis.setLowerMargin(0.05);