Sign in to follow this  
andychi12

Data Plot Overlap

Recommended Posts

Hi ,

I am using Column 3D Line (Single Y) Combination Chart encountered the problem of overlapping information, is there any know how to fix itps. please see attach file show the problem .

 

ps. please see the attach file , it's my problem

 

thank you very much .

post-10896-048010400 1294797027_thumb.jpg

Edited by andychi12

Share this post


Link to post
Share on other sites
Guest Angie

Hi,

 

Welcome to FusionCharts Forum!smile.gif

 

Could you please send us the code to look into the issue?

 

Awaiting for your reply.

Share this post


Link to post
Share on other sites

Java Code

 

 

in Struts2 action ...

 

 

StringBuilder resultSb = new StringBuilder();

resultSb.append("<chart caption='" + custCode + " - " + (orderType.equals("All")?"Total":orderType) + " " + fiscalYear + "-" + String.valueOf(Integer.parseInt(fiscalYear)+3) + " BP Progress'"+

"formatNumberScale='"+Constants.FORMAT_NUMBER_SCALE+"' " +

"placeValuesInside ='1' " +

"canvasBgColor='D9E5F1' canvasBaseColor='D9E5F1' " +

"exportEnabled='1' exportAtClient='1' exportHandler='fcExporter1' exportFileName='MyFileName' " +

"showToolTip ='1' seriesNameInToolTip ='0' " +

"showLegend ='0' legendPosition ='BOTTOM' >");

resultSb.append("<categories> <category label='" + fiscalYear + "' /> <category label='" + String.valueOf(Integer.parseInt(fiscalYear)+1) + "' /> <category label='" + String.valueOf(Integer.parseInt(fiscalYear)+2) + "' /> <category label='" + String.valueOf(Integer.parseInt(fiscalYear)+3) + "' /> </categories>");

 

resultSb.append("<dataset seriesName='Rolling/Actual' showValues ='1' valuePosition ='ABOVE'>");

resultSb.append("<set value='203' />")

resultSb.append("</dataset>");

 

resultSb.append("<dataset seriesname='BP' renderAs='Line' anchorSides='4' anchorRadius='5' showValues ='1' valuePosition ='ABOVE'>")

resultSb.append("<set value='203' />");

resultSb.append("</dataset>");

resultSb.append("<styles> " +

"<definition> " +

" <style name='myValuesFont' type='font' size='11' bold='1' /> " +

"</definition> " +

"<application> " +

" <apply toObject='DataValues' styles='myValuesFont' /> " +

"</application> " +

"</styles>");

resultSb.append("</chart>");

return resultSb.toString();

 

 

in jsp

 

var chart3 = new FusionCharts("/js/fusionCharts/Charts/MSColumnLine3D.swf", "ChartId3", "920", "400", "0", "0");

url = '/BizReport/chart/showKeyCustomerChart3.action?master.keyCustNo='+getObjectValue("master.keyCustNo")+'&master.fiscalYear='+getObjectValue("master.fiscalYear") + '&master.orderType=' + getObjectValue("master.orderType") + '&master.currency=' + getObjectValue("master.currency") + '&master.businessRegion=' + getObjectValue("master.businessRegion");

chart3.setDataURL(url);

chart3.render("myChartContainer3");

Share this post


Link to post
Share on other sites
Guest Angie

Hi,

Welcome to FusionCharts Forum!smile.gif

This is not an issue, because by default, when a line dataset is rendered over a column 3D dataset, the line dataset shifts in the z-dimension to give a 3D perspective.

 

This is not the case of data plot overlapping.

 

Hope this helps.smile.gif

Edited by Angie

Share this post


Link to post
Share on other sites

Hello,

Thank you very much for last reply .

 

When the values of line and column overlap, is it possible to separate them automatically , as shown in the attachment.

post-10896-058690400 1295253060_thumb.jpg

Edited by andychi12

Share this post


Link to post
Share on other sites
Guest Angie

Hi,

 

I am afraid, FusionCharts does not support the feature you are looking for, at this time.

 

We have taken a note of your suggestions here and added the same in our wishlist.

 

Hope you have a great day.smile.gif

Share this post


Link to post
Share on other sites
Guest Angie

Hi,

 

We will try to implement this feature in our next release.

 

Thanks for your continued patience and patronage.

Share this post


Link to post
Share on other sites

Hi,

 

It's a good news for our company.

 

We had purchase Fusion Chart for our project , and we knew it is correct decision, look forward next release version and thank you very much again.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this