no data to display with FCF_MSLine.swf
#1
Posted 20 June 2010 - 08:41 PM
it's strange that in one page I render three charts,
the first two are single series chart ,both of them rend well
but the third one I try to use the multi-series chart it does not work well
I am sure that the swf file path is right (cause that swf file path is same as the single series chart)
and the data is right (even I copied the example data to test)
so could everyone help me to figure out what's wrong with my multi-series chart????
Thanks a lot
Other Replies To This Topic
#2
Posted 20 June 2010 - 11:13 PM
Welcome to FusionCharts forum. ![]()
Could you please send us the screen-shot of the error that you are receiving as an attachment?
Awaiting your reply.
Other Replies To This Topic
#3
Posted 21 June 2010 - 01:44 AM
I've already fixed that problem, it's very strange that the chart with distinguish the ' & "
does not work if I write down like this:
$strXML='
it works if I replace ' with " and " with ' for above code.
Other Replies To This Topic
#4
Posted 21 June 2010 - 01:57 AM
http://www.fusioncha...chment2438.aspx
http://www.fusioncha...chment2439.aspx
if I horizontally display the date the last month can not display well.
so could u please tell me what's maybe wrong?
Attached File(s)
-
correctxaxis.bmp (526.93K)
Number of downloads: 92 -
wrongxaxis.bmp (540.05K)
Number of downloads: 67
Other Replies To This Topic
#5
Posted 21 June 2010 - 02:43 AM
The datalabels that you are using is not getting enough space to render properly and is getting cropped.
In case you wish to display them in horizontal pattern, please try using the attribute "labelStep" in the <chart> element.
Ref.- http://www.fusioncharts.com/docs?/AttDesc/DataLabels.html
Hope this helps.
Other Replies To This Topic
#6
Posted 21 June 2010 - 06:10 PM
I am using the fusionchart free version, any suggestion about?
thanks.
Other Replies To This Topic
#7
Posted 21 June 2010 - 11:21 PM
I am afraid FusionCharts Free does not support this.
Other Replies To This Topic
#8
Posted 24 June 2010 - 01:22 AM
one more question,please find the attachment,when value=0 the graph is strange
can it be normal one with lable 0?
http://www.fusioncha...ntIcons/bmp.png
Attached File(s)
-
zerolikethis.bmp (571.93K)
Number of downloads: 40
Other Replies To This Topic
#9
Posted 24 June 2010 - 02:52 AM
Could you please check with the sample attached for your reference?
In case, the sample file does not solve your issue, please send us the XML file you are using to render the chart as an attachment.
Looking forward to your feedback on the same.
Attached File(s)
-
Sample.zip (17.23K)
Number of downloads: 51
http://documentation...sioncharts.com/
Thanks,
Sanjukta
Follow us @Twitter!
Other Replies To This Topic
#10
Posted 01 August 2010 - 08:16 PM
I am encountering a problem, I am using PHP class where I am using array to render 3 multiseries line graphs on one page.
The first two graphs output normally but for the third graph when I print the values of my array, my values are printed for all 4 lines but while drawing only 2 lines are drawn istead of 4 lines.
I am just curious whether this is because they are too close w.r.t. to their values.
I am attaching my sample code, my array values printed and the graph shown to help you figure out the problem.
Any help will be really great as I am stuck in this problem.
Thanks in advance!!!
Attached File(s)
-
Code.doc (193.5K)
Number of downloads: 91
Karan
Other Replies To This Topic
#11
Posted 02 August 2010 - 12:24 AM
This issue is occuring because the values for the two dataplots are almost similar.
The anchors for both the line plots are displayed, hence both the line exists.
Natively, there is no solution to this issue. As a work-around, you can try increasing the thickness and decreasing the alpha of the line plot that is visible in order to make the hidden plot visible.
Ref.- <chart ...>
<dataset seriesnmae='A' lineThickness='5' alpha='50' >
<set ... />
.
.
.
</dataset>
<dataset seriesnmae='B'>
<set ... />
</dataset>
.
.
.
</chart>
Hope this helps. ![]()
http://documentation...sioncharts.com/
Thanks,
Sanjukta
Follow us @Twitter!
Other Replies To This Topic
#12
Posted 02 August 2010 - 08:16 PM
But, I am using array method t plot the graph. Can you please elaborate how I can manipulate the thickness in this method.
Once again thank you!!
Karan
Karan
Other Replies To This Topic
#13
Posted 02 August 2010 - 11:51 PM
You are welcome. ![]()
Please refer to the following example to solve your purpose:
Ref.- $arrCatNames[0] = "Week 1";
$arrCatNames[1] = "Week 2";
$arrCatNames[2] = "Week 3";
$arrCatNames[3] = "Week 4";
$arrData[0][0] = "Current Month"; //Series Name
$arrData[0][1] = "color=ff0000;lineThickness=2;alpha=50"; // Dataset Parameters
$arrData[0][2] = 567500;
$arrData[0][3] = 815300;
$arrData[0][4] = 556800;
$arrData[0][5] = 734500;
$arrData[1][0] = "Previous Month"; //Series Name
$arrData[1][1] = "color=0000ff"; // Dataset Parameters
$arrData[1][2] = 547300;
$arrData[1][3] = 584500;
$arrData[1][4] = 754000;
$arrData[1][5] = 456300;
$FC->addChartDataFromArray($arrData,$arrCatNames);
Hope this helps.
http://documentation...sioncharts.com/
Thanks,
Sanjukta
Follow us @Twitter!
Other Replies To This Topic
#14
Posted 04 August 2010 - 02:41 AM
Thank you so much for your help.
Jaslok
Karan
Other Replies To This Topic
#15
Posted 04 August 2010 - 03:34 AM
You are most welocme. ![]()
Glad that your issue is resolved.
Happy FusionCharting!
http://documentation...sioncharts.com/
Thanks,
Sanjukta
Follow us @Twitter!

Back to top
MultiQuote