Speed1965

Members
  • Content count

    6
  • Joined

  • Last visited

Everything posted by Speed1965

  1. Hi I have an AngularGauge Chart (but it could be any chart) and it has the chartClick event listener set for it. What I now want is for the cursor to change to a pointer when the mouse hovers over the chart to show that it is clickable. FusionCharts v3.11.2 Regards Mark
  2. Hi I am trying to clone an AngularGauge chart, but having a problem setting the chart caption. I have tried var clonedChart = Guage1.clone({ renderAt: 'New_Id', chart: { caption: 'New Caption' } }, true); FusionCharts v3.11.2 Regards Mark
  3. AngularGuage

    Hi I am creating an AngularGauge, I have set up an chartClick event listener for it. What I can't figure out is how to set the chart's cursor to a pointer to highlight the chart is clickable. FusionCharts v3.11.2 Regards Mark
  4. Hi I am trying to clone an AngularGauge chart but having a problem modifying the dial score I am using v3.11.2 Regards Mark
  5. AngularGauge - Cloning - Set Chart Caption

    I seems that after finding out about the setCharAttribute() that I hit another wall trying to modify the score details in the dials.dial object. So in the end I have decided to abandon the clone approach and just create a common json object that I can pass into all my FusionCharts AngualrGauge objects. Before I pass in each common json object I modify the: jsonObject.renderAt jsonObject.datasource.caption jsonObject.datasource.dials.dial[0].value jsonObject.datasource.annotations.groups[1].label The reason I am doing this as I can have up to 20 small dials on my webpage, all looking the same apart from the score. Regards Mark
  6. AngularGauge - Cloning - Set Chart Caption

    After a bit of searching I found the "setChartAttribute()" method. So now I have figured out how to modify the chart caption using the setChartAttribute, I still need to figure out how to modify the dial score in the clone copy. Regards Mark