waterfall « BarChart « JFreeChart Q&A





2. How to change colors bars in WaterFall Chart?    jfree.org

How to change colors bars in WaterFall Chart? by m.ibbrahim Fri Oct 27, 2006 7:18 am Hi Friends, I am a newbie to JFree and I am trying hard to change the default colors of bars in WaterFall model chart. I have used the following code to change the colors in waterfall chart. But, it's not working. Can anyone help ...

3. Waterfall like bar chart    jfree.org

I need to draw a vertical bar chart. The chart will be like a waterfall chart but the bars will not be connected with each other. Suppose the first bar ends at 2 of Y-Axis and 1 of X-Axis then the second bar will start from 2 of Y-Axis and 2 of X-Axis. Please let me know how to draw this ...

4. Color change for last bar in Waterfall chart    jfree.org

I am just wondering whether is it possible to use two sets of color for last bar in waterfall chart. Say last bar height is 300, where height 0 - 200, the color will be gray and 200 - 300, color will be green. Please suggest me how do I can implement?

6. Problem in displaying label value of bar using waterfall ren    jfree.org

Hi All, I want to display x axis value at the top of each bar. My code is as below: public class test6 { public static void main(final String[] args) { try { ChartRenderingInfo chartRenderInfo = null; final CategoryPlot plot = new CategoryPlot(); // upper waterfall graph DefaultCategoryDataset dataset1 = new DefaultCategoryDataset(); dataset1.addValue(20.0,"", "P"); dataset1.addValue(4.0, "", "Q"); dataset1.addValue(2.0,"", "R"); dataset1.addValue(4.0, "", ...