FusionCharts Forum: no data to display with FCF_MSLine.swf - FusionCharts Forum

Jump to content

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

no data to display with FCF_MSLine.swf

#1 User is offline   lake 

  • Forum Newbie
  • Group: Members
  • Posts: 5
  • Joined: 20-June 10

Posted 20 June 2010 - 08:41 PM

Hi all,



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
0

Other Replies To This Topic

#2 User is offline   Basundhara Ghosal 

  • Supreme Being
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2459
  • Joined: 15-September 09

Posted 20 June 2010 - 11:13 PM

Hi,

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.

Regards,

Basundhara Ghosal

Follow us on Twitter :D
0

Other Replies To This Topic

#3 User is offline   lake 

  • Forum Newbie
  • Group: Members
  • Posts: 5
  • Joined: 20-June 10

Posted 21 June 2010 - 01:44 AM

thank you Basundhara

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

Other Replies To This Topic

#4 User is offline   lake 

  • Forum Newbie
  • Group: Members
  • Posts: 5
  • Joined: 20-June 10

Posted 21 June 2010 - 01:57 AM

another problem come up.





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)


0

Other Replies To This Topic

#5 User is offline   Basundhara Ghosal 

  • Supreme Being
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2459
  • Joined: 15-September 09

Posted 21 June 2010 - 02:43 AM

Hi,

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

Regards,

Basundhara Ghosal

Follow us on Twitter :D
0

Other Replies To This Topic

#6 User is offline   lake 

  • Forum Newbie
  • Group: Members
  • Posts: 5
  • Joined: 20-June 10

Posted 21 June 2010 - 06:10 PM

Hi,

I am using the fusionchart free version, any suggestion about?



thanks.
0

Other Replies To This Topic

#7 User is offline   Basundhara Ghosal 

  • Supreme Being
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2459
  • Joined: 15-September 09

Posted 21 June 2010 - 11:21 PM

Hi,

I am afraid FusionCharts Free does not support this.

Regards,

Basundhara Ghosal

Follow us on Twitter :D
0

Other Replies To This Topic

#8 User is offline   lake 

  • Forum Newbie
  • Group: Members
  • Posts: 5
  • Joined: 20-June 10

Posted 24 June 2010 - 01:22 AM

ok, thanks



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)


0

Other Replies To This Topic

#9 User is offline   Sanjukta 

  • Supreme Being
  • Group: Administrators
  • Posts: 1664
  • Joined: 15-March 10

Posted 24 June 2010 - 02:52 AM

Hi,

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)


Help us improve our documentation with your precious feedback at:
http://documentation...sioncharts.com/

Thanks,
Sanjukta

Follow us @Twitter!
0

Other Replies To This Topic

#10 User is offline   dazzler 

  • Forum Newbie
  • Group: Members
  • Posts: 6
  • Joined: 28-July 10

Posted 01 August 2010 - 08:16 PM

Hi,

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)

  • Attached File  Code.doc (193.5K)
    Number of downloads: 91

a newbie...

Karan
0

Other Replies To This Topic

#11 User is offline   Sanjukta 

  • Supreme Being
  • Group: Administrators
  • Posts: 1664
  • Joined: 15-March 10

Posted 02 August 2010 - 12:24 AM

Hi Karan,

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


Help us improve our documentation with your precious feedback at:
http://documentation...sioncharts.com/

Thanks,
Sanjukta

Follow us @Twitter!
0

Other Replies To This Topic

#12 User is offline   dazzler 

  • Forum Newbie
  • Group: Members
  • Posts: 6
  • Joined: 28-July 10

Posted 02 August 2010 - 08:16 PM

Thanks for your guidance!!

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

a newbie...

Karan
0

Other Replies To This Topic

#13 User is offline   Sanjukta 

  • Supreme Being
  • Group: Administrators
  • Posts: 1664
  • Joined: 15-March 10

Posted 02 August 2010 - 11:51 PM

Hi Karan,

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

Help us improve our documentation with your precious feedback at:
http://documentation...sioncharts.com/

Thanks,
Sanjukta

Follow us @Twitter!
0

Other Replies To This Topic

#14 User is offline   dazzler 

  • Forum Newbie
  • Group: Members
  • Posts: 6
  • Joined: 28-July 10

Posted 04 August 2010 - 02:41 AM

Hi Sanjukta,

Thank you so much for your help.

Jaslok

a newbie...

Karan
0

Other Replies To This Topic

#15 User is offline   Sanjukta 

  • Supreme Being
  • Group: Administrators
  • Posts: 1664
  • Joined: 15-March 10

Posted 04 August 2010 - 03:34 AM

Hi Karan,

You are most welocme. :)

Glad that your issue is resolved.

Happy FusionCharting! :)

Help us improve our documentation with your precious feedback at:
http://documentation...sioncharts.com/

Thanks,
Sanjukta

Follow us @Twitter!
0

Other Replies To This Topic

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic