Search found 10 matches

by TEJASC
Fri Oct 17, 2014 11:56 am
Forum: JFreeChart
Topic: Orson Charts for HTML5:Can v use SVG image instead of canvas
Replies: 1
Views: 3013

Orson Charts for HTML5:Can v use SVG image instead of canvas

Hi,

Few Questions:
1. For Orson Charts for HTML5, can we generate/render a SVG image instead of using canvas?
2. Can we have render markers using Orson Charts for HTML5?

Any help is appreciated.

Thanks!!
by TEJASC
Fri Oct 17, 2014 7:24 am
Forum: JFreeChart
Topic: Unable to download Orson Charts For HTML5!!!!
Replies: 1
Views: 3028

Unable to download Orson Charts For HTML5!!!!

Hi,

I am unable to download Orson Charts For HTML5.
It shows Page not found when I try to download using this url: http://object-refinery.com/orsoncharts/ ... eb-1.0-zip.

Any help is appreciated.

Thanks!!
by TEJASC
Fri May 16, 2014 1:41 pm
Forum: JFreeChart
Topic: Can I add Markers in HeatMap??
Replies: 3
Views: 4169

Re: Can I add Markers in HeatMap??

Thanks for answering the other part of the question.

My first question Can we add Marker to HeatMap still remains unanswered?

Can anybody help me with this.

Thanks in advance!!!!
by TEJASC
Thu May 15, 2014 9:40 am
Forum: JFreeChart
Topic: Can I add Markers in HeatMap??
Replies: 3
Views: 4169

Can I add Markers in HeatMap??

Can we add Marker in HeatMap? If yes, how? I have prepared a demo for HeatMap: package demo; import java.awt.BasicStroke; import java.awt.Color; import javax.swing.JPanel; import org.jfree.chart.ChartPanel; import org.jfree.chart.JFreeChart; import org.jfree.chart.axis.AxisLocation; import org.jfree...
by TEJASC
Mon Apr 28, 2014 11:10 am
Forum: JFreeChart
Topic: Orson 3D Charts: Unable to render border and gridlines
Replies: 1
Views: 2739

Orson 3D Charts: Unable to render border and gridlines

Hi there, I am working with Orson 3D charts and facing 3 different issues: 1. Unable to give border to chart, chartBox and legend. For legend border, it should render an outline uniting all legend items. Since, border can't be given to these elements, thus in turn, is unable to give borderPaint and ...
by TEJASC
Fri Apr 25, 2014 11:40 am
Forum: JFreeChart
Topic: HeatMap with String values on axes
Replies: 3
Views: 5770

Re: HeatMap with String values on axes

Thanks a lot.

I preferred first approach. It works like a charm. :P
by TEJASC
Wed Apr 23, 2014 8:17 am
Forum: JFreeChart
Topic: HeatMap with String values on axes
Replies: 3
Views: 5770

HeatMap with String values on axes

Can I have a HeatMap in JFree similar to this . Which dataset should I use? I tried using DefaultHeatMapDataset and DefaultXYZDataset but they supports only numeric values on its axes and not String values. Can I use DefaultCategoryDataset to implement HeatMap? Suggestions are appreciated. Thanks in...
by TEJASC
Wed Mar 19, 2014 9:56 am
Forum: JFreeChart
Topic: Can I begin JFree Area Chart from Y-axis
Replies: 2
Views: 3139

Re: Can I begin JFree Area Chart from Y-axis

Thanks a lot, it worked for me. I was trying to plot series starting from y-axis, which I did using: AreaRenderer renderer = new AreaRenderer(); renderer.setEndType(AreaRendererEndType.LEVEL); CategoryPlot categoryplot = (CategoryPlot)jfreechart.getPlot(); categoryplot.setRenderer(renderer); I got o...
by TEJASC
Wed Mar 19, 2014 9:46 am
Forum: JFreeChart
Topic: Can we animatie Orson 3D Charts?
Replies: 1
Views: 2368

Can we animatie Orson 3D Charts?

Hi, I started using Orson 3D Charts recently and results are great. I am generating SVG images for these charts. But, I have got stuck with its animation part (I am trying to animate chart on load). Had anybody tried animation on these charts, especially, Area and Pie chart. Any help is appreciated....
by TEJASC
Fri Mar 14, 2014 3:19 pm
Forum: JFreeChart
Topic: Can I begin JFree Area Chart from Y-axis
Replies: 2
Views: 3139

Can I begin JFree Area Chart from Y-axis

Hi, I have recently came across with Jfree charts. And I am trying to draw a Simple Area Chart which starts from y-axis. For ex: Refer Image http://i.imgur.com/6wkcyLr.jpg Though, this chart is constructed using Stacked Area chart, I need to achieve same using Simple Area Chart, where the rendering ...