Search found 8 matches

by Mala
Mon Apr 14, 2014 12:20 pm
Forum: JFreeSVG
Topic: JFreeSVG 1.8
Replies: 4
Views: 16453

Re: JFreeSVG 1.8

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?
by Mala
Fri Feb 07, 2014 8:13 am
Forum: JFreeSVG
Topic: Interactive SVG charts/images
Replies: 3
Views: 32650

Re: Interactive SVG charts/images

Thanks,
Will look into it.
by Mala
Fri Feb 07, 2014 8:12 am
Forum: JFreeSVG
Topic: Transparency issues with jfreeSVG
Replies: 1
Views: 9361

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 ...
by Mala
Tue Feb 04, 2014 7:43 am
Forum: JFreeSVG
Topic: id attribute to svg group object.
Replies: 5
Views: 36904

Re: id attribute to svg group object.

david.gilbert wrote:
Mala wrote:...there is no call to appendOptionalElementIDFromHint(this.sb) method of SVGGRaphics2D.
That's a bug, thanks for making me aware of it. I've committed the fix for inclusion in the upcoming 1.7 release.
Glad that it helped.
by Mala
Tue Feb 04, 2014 7:38 am
Forum: JFreeChart
Topic: JfreeChart Fixed Bar Width
Replies: 1
Views: 3320

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...
by Mala
Fri Jan 31, 2014 11:58 am
Forum: JFreeSVG
Topic: 3D JfreeCharts SVG color problem in IE/Firefox
Replies: 2
Views: 9513

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...
by Mala
Wed Jan 29, 2014 2:56 pm
Forum: JFreeSVG
Topic: id attribute to svg group object.
Replies: 5
Views: 36904

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...
by Mala
Tue Jan 28, 2014 1:23 pm
Forum: JFreeSVG
Topic: Interactive SVG charts/images
Replies: 3
Views: 32650

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...