learning FC

Members
  • Content count

    17
  • Joined

  • Last visited

Posts posted by learning FC


  1. Hi,

    I have a page that contains the fushion charts and this individual page renders perfectly and i can resize it,

    and i am embedding this page into my main app,

    the problem is that the chart span is not getting smaller and a div is added vertically to the page at right hand side,

    that disturb the ui of my app.

    How can make ui to look better. Pls Help !


  2. Hi,

    I have a chart, and i want to get it drill down but before drill down i want to give some choices like type-1 type-2.

    On clicking on chart bar it should give options to select and then drill down the chart.

     

    So, i want to do is:

     

    suppose i have three categories x, y, z.

    and seriesname for each category is a1, a2, a3.

    and now i want when i click on ''a1'' of ''x'' a pop up should open with options to select like type1 or type2

    and on selecting one of the value the chart then drilldown.

    is this possible? and how can i implement this ? plz reply soon.

    Thanks,


  3. hi

    could you please upload a sample code for this issue.

    Thanks

     

    Hi,

     

     

     

    Please note that in LinkedCharts, by default, the descendant charts used the same configuration and chart type as parent chart. However, FusionCharts JavaScript class allows you to configure each aspect of the descendant charts LinkedCharts using the function "configureLink()" for each chart instance. Using this function, you can pass all your desired configurations for the descendant charts.

    Ref.- http://docs.fusionch...l#configurelink

     

    You can pass all the properties that a FusionCharts constructor accepts.

    Ref.- http://docs.fusionch...tml#chartparams

     

    Additionally, you can also configure the overlay button using "overlayButton" property.

    Ref.- http://docs.fusionch...l#overlaybutton

     

    Hope this helps. :)


  4. I found the way to implement this:

     

    var chartReference = FusionCharts( "myChartId" );

    chartReference.setXMLUrl( "newData.xml" );

     

    Hi,

    i am try to render chart with same id and div but with diiferent data on click, like this

     

    var myChart = new FusionCharts("Column2D","myChart1", "85%", "80%", "0" );

    myChart.setJSONData(t);

    myChart.render("chartContainer");

     

    but the error is thrown:

    ParameterException: #06091847 chartobject-1 Warning >> A FusionChart oject with the specified id "myChart1" already exists. Renaming it to chartobject-1How do i solve this? is this possible bcoz m using a div with a few links and depending upon the link the data is to be displayed in the same chart removing the existing chart.

    Please help...


  5. Hi,

    i am try to render chart with same id and div but with diiferent data on click, like this

     

    var myChart = new FusionCharts("Column2D","myChart1", "85%", "80%", "0" );

    myChart.setJSONData(t);

    myChart.render("chartContainer");

     

    but the error is thrown:

    ParameterException: #06091847 chartobject-1 Warning >> A FusionChart oject with the specified id "myChart1" already exists. Renaming it to chartobject-1How do i solve this? is this possible bcoz m using a div with a few links and depending upon the link the data is to be displayed in the same chart removing the existing chart.

    Please help...


  6. Thanks , It worked , i passed the variable with setJSONData and it worked :)

    Hi,

     

    I am afraid, you can provide data to the chart either in XML/JSON string or can provide XML/JSON file URL only.

     

    So, you would need to convert your JSON data as per the FusionCharts JSON data format and then provide as string or pass the URL.

     

    For more information on "Providing and Updating Chart Data", please follow the link below:

    http://docs.fusionch...ChangeData.html

     

    Hope this helps!


  7. Hi,

    I have a few issues regarding rendering the chart:

    1-I have a chart with three elements,

    i want to use MSCombiDY2D,

    and also i have json data file(only key and data ) not in the format like categories, dataset that is required for fusion charts

    so, how do i use my json file to render the chart, its has large data.

     

    2-Is it possible to show one element(legend) active on loading the graph.

     

    3-can a single graph can be drawn in more than one chart type depending on selection of legend.

    suppose i select one entity(legend) it show bar graph and on two it show line+bar graph and

    on selecting three it should render MSCombiDY2D chart. and data need to come dynamically. IS this possible?

     

    Please help and tell if these are possible cases.


  8. Hi,

    I am creating a drilldown chart with different chart type at each level,

    I am using javascript charts, i have read in docs about configurelink(), but could not able to implement this,

     

    to render chart, i am giving the chart type like this(without .swf):

    var myChart = new FusionCharts( "Column2D", "myChartId", "320", "250", "0", "1" );

     

    Kindly help!


  9. Thanks , it worked.

     

    Hey,

     

    Copying data to clipboard through context menu is not possible using JavaScript charts.

     

    For JavaScript charts, make use of FusionCharts JavaScript API for data export, which returns the CSV data as string in your JavaScript code

     

    Please find the modified sample which displays the CSV data while the chart finishes rendering.

     

    Hope this helps.


  10. thanks for replying but as i mentioned this property works for xml data, and i am using json data.

     

     

    Hey,

     

    Welcome to FusionCharts Forum.

     

    Yes, using JSON data, it is possible to copy the generated CSV data to clipboard for Flash Chart.

     

    To allow export of data using context menu, you need to specify the following in data:

    {

    "chart":{

    "showexportdatamenuitem":"1"

    }....

    } Hope this helps.