Sign in to follow this  
maligangadhar

FCF_Line.swf X axis vriable value

Recommended Posts

Hi ,

 

 

 

Iam using FCF_Line.swf for populating chart, on x axis i need to show values like 0-30, 30-70, 70-100.....how can i achieve this in my chart.

 

 

 

Can you please help me out on this.

 

 

 

Thanks in advance.

 

 

 

Regards

 

Ganga

Share this post


Link to post
Share on other sites
Guest Madhumita

Hello Ganga,

What you can do is use trendlines with startValue corresponding to the y-axis values nd use the displayValue attribute to display your custom text beside it.

Now, you also need to set showYAxisValue='0' in the chart element.

e.g. suppose y-axis values are actually 0,30,60,90.

Then you can use trndlines like below to disply what you need:

<trendLines>

<line startValue='30'  alpha='0' displayvalue='0-30' /> 

<line startValue='60'  alpha='0' displayvalue='30-60' /> 

  <line startValue='90' alpha='0' displayvalue='60-90' /> 

</trendLines>

 

I hope this helps you.

Share this post


Link to post
Share on other sites

Hi ,

 

 

 

Thx for ur reply....

 

 

 

How do i need to apply trend lines for Y axis , since iam using FCF_Line.swf for my reports.

 

 

 

plx find my code as follows:

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Thanks

 

Ganga

Share this post


Link to post
Share on other sites

my code below:

 

 

 

graph AlternateHGridColor="1" alternateHGridAlpha="5" caption="Trend Details" decimalPrecision="0" divLineAlpha="20" divLineColor="ff5904" formatNumberScale="0" numPrefix="" showAlternateHGridColor="ff5904" showNames="1" showValues="0" xAxisName="time" yAxisName="Value"

 

 

 

set name="Fri Mar 05 15:47:54 IST 2010" value="15

 

 

 

now how do i inlcude trendlines here...

 

 

 

plz advice.

Share this post


Link to post
Share on other sites
Guest Madhumita

Hello,

Please refer to the example below which shows how to include trendlines to a chart:

<chart caption='Monthly Revenue' xAxisName='Month' yAxisName='Revenue' numberPrefix='$' showValues='0'>

 <set label='Jan' value='420000' />

 <set label='Feb' value='910000' />

 <set label='Mar' value='720000' />

 <set label='Apr' value='550000' />

 <set label='May' value='810000' />

 <set label='Jun' value='510000' />

 <set label='Jul' value='680000' />

 <set label='Aug' value='620000' />

 <set label='Sep' value='610000' />

 <set label='Oct' value='490000' />

 <set label='Nov' value='530000' />

 <set label='Dec' value='330000' />

 

 <trendLines>

<line startValue='700000' color='009933' displayvalue='Target' />

  <line startValue='500000' color='009933' displayvalue='Failure' />

 </trendLines>

 

 </trendLines>

 

</chart>

Share this post


Link to post
Share on other sites

Hi,

 

 

 

iam using CF_Line.swf for generating charts , i need to implement export functionality like export to excel and export to pdf.

 

 

 

Please do the needfull.

 

 

 

Regards

 

Ganga

Share this post


Link to post
Share on other sites
Guest Basundhara Ghosal

Hi,

I am afraid, FusionCharts Free does not support the Export functionality.

Share this post


Link to post
Share on other sites
Guest Basundhara Ghosal

Hi,

Starting FusionCharts v3.0.7, you could export your charts as images. And FusionCharts v3.1 adds new dimensions to it, by allowing you to export as PDFs as well, and also lets you choose whether to export the charts at client-side or server-side.

In case you are using FusionCharts Free, it will not support this functionality.

The link that you have sent us show-cases the export functionality of FusionCharts V3.

Hope this helps. :)

Share this post


Link to post
Share on other sites

thx for ur quick reply,

 

 

 

iam using free version of fusion charts, is there any chart which supports this feature.(Need to export data .....)

 

 

 

Thanks in advance.

 

 

 

Regards

 

Ganga

Share this post


Link to post
Share on other sites
Guest Basundhara Ghosal

Hi,

I am afraid, FusionCharts Free does not support this.

Share this post


Link to post
Share on other sites

thanks a lot , it was really helpfull.

 

 

 

One more clarification, i am using Column2D.swf from the evaluation version which has only download to png, img and pdf.

 

 

 

I need to downlod to excel as well , any help on this.

 

 

 

Regards

 

Ganga

Share this post


Link to post
Share on other sites
Guest Basundhara Ghosal

Hi Ganga,

Thanks for your kind words.

In case you wish to import the FusionCharts to Excel, you need to first export the chart as image and then need to add it to the Excel.

Hope this helps. :)

Share this post


Link to post
Share on other sites
Guest
This topic is now closed to further replies.
Sign in to follow this