Clara

Members
  • Content count

    5
  • Joined

  • Last visited

Posts posted by Clara


  1. Hi,


    I have a question concerning the YAxis options. For a basic chart, FusionCharts XT defines automatically the YAxis values. Is it possible to configure the step between YAxis values (as labelStep for XAxis)?

    For example, actually values : 4 - 8 - 12 - etc. I would like : 1 - 2 - 3 - 4.


    If this option is not supported, is it possible to add it for a next version of fusioncharts ?





    Thanks,



    Clara


  2. Hi,

     

    I have a problem with the "_overrideJSChartConfiguration" function utilisation.

     

    Have you a correct example for me using this function ?

     

    My code below :

     

    var chart = new FusionCharts('pie2D.swf', 'chart-1', "100%", "100%", "0", "1");

    chart.setTransparent(true);

    chart.setDataURL('data.php');

    if (!!chart._overrideJSChartConfiguration) {

    chart._overrideJSChartConfiguration({

    exporting:{

    type: 'image/jpeg'

    }

    });

    }

    chart.render('my_chart_div');

     

    Javascript debugger return : _overrideJSChartConfiguration is not a function

     

    Can you help me ?

     

    Thanks for your answer,

     

    Clara