Hi David,
Can you please give and example of integration of jFreeSVG with orson charts which is a feature of your new release jFreeSVG 1.8?
Search found 8 matches
- Mon Apr 14, 2014 12:20 pm
- Forum: JFreeSVG
- Topic: JFreeSVG 1.8
- Replies: 4
- Views: 24018
- Fri Feb 07, 2014 8:13 am
- Forum: JFreeSVG
- Topic: Interactive SVG charts/images
- Replies: 3
- Views: 64802
Re: Interactive SVG charts/images
Thanks,
Will look into it.
Will look into it.
- Fri Feb 07, 2014 8:12 am
- Forum: JFreeSVG
- Topic: Transparency issues with jfreeSVG
- Replies: 1
- Views: 13205
Transparency issues with jfreeSVG
Hi, I have been studying the jFreeSvg for some time. I was analysing the transparency factor. I set renderer.setSeriesPaint(0, new Color(255, 0, 0, 255)); renderer.setSeriesPaint(1, new Color(0,255,0,64)); as colors for series. However I do not see any transparency effect in the svg generated. Here ...
- Tue Feb 04, 2014 7:43 am
- Forum: JFreeSVG
- Topic: id attribute to svg group object.
- Replies: 5
- Views: 75522
Re: id attribute to svg group object.
Glad that it helped.david.gilbert wrote:That's a bug, thanks for making me aware of it. I've committed the fix for inclusion in the upcoming 1.7 release.Mala wrote:...there is no call to appendOptionalElementIDFromHint(this.sb) method of SVGGRaphics2D.
- Tue Feb 04, 2014 7:38 am
- Forum: JFreeChart
- Topic: JfreeChart Fixed Bar Width
- Replies: 1
- Views: 4279
JfreeChart Fixed Bar Width
Hi, I am trying to use JfreeSVG along with JfreeChart. For a BarChart what I want to achieve is give a fixed bar width to Bars. I know that the width of bars is calculated based on the upperMargin- rangeaxis api LowerMargin - rangeaxis api maximumBarWidth - renderer api But , Now as I am Using Jfree...
- Fri Jan 31, 2014 11:58 am
- Forum: JFreeSVG
- Topic: 3D JfreeCharts SVG color problem in IE/Firefox
- Replies: 2
- Views: 14069
3D JfreeCharts SVG color problem in IE/Firefox
Hi, I have created a SVG for 3D Bar chart and viewed in different browsers Linear gradient used is as following // set up gradient paints for series... GradientPaint gp0 = new GradientPaint(0.0f, 0.0f, Color.blue, 0.1f, 0.0f, new Color(64, 0, 64)); GradientPaint gp1 = new GradientPaint(0.0f, 0.0f, C...
- Wed Jan 29, 2014 2:56 pm
- Forum: JFreeSVG
- Topic: id attribute to svg group object.
- Replies: 5
- Views: 75522
id attribute to svg group object.
Hi, I have been working on jFreeSVG for some time. We can give id attributes as a rendering hints to svg elements like <rect>< line> using SVGHints.KEY_ELEMENT_ID. But as I see in public void drawString(String str, float x, float y) there is no call to appendOptionalElementIDFromHint(this.sb) method...
- Tue Jan 28, 2014 1:23 pm
- Forum: JFreeSVG
- Topic: Interactive SVG charts/images
- Replies: 3
- Views: 64802
Interactive SVG charts/images
I am drawing a chart using JFreeChart. I would like to get its output in SVG format so using JFreeSVG. Is it possible to create charts using JFreeChart and attach some handlers to it in the SVG format? For example, in case of bar chart - click on a bar should have a handler(which will drill-down the...