Search the Community

Showing results for tags 'FusionCharts and ASP.NET'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Company Forums
    • Company News
  • Product Forums
    • FusionCharts XT
    • FusionWidgets XT
    • PowerCharts XT
    • FusionMaps XT
    • Collabion Charts for SharePoint
    • jQuery Plugin for FusionCharts
    • AngularJS plugin
    • ReactJS plugin
  • General Forums
    • FusionCharts Jobs and Consultation
    • FusionLounge

Found 2 results

  1. I using FusionChart with asp.net. In implementation i hiting to server with ajax through which i get JSOn in response and i simply pass the json in datasource of fusion chart. Fusion chart is prepared successfully but in second time fusion chart in prepared but the output chart lost its own height and width. why is this so i can't understand. Following code i use <div id="dvGraph" style="width: 800px; height: 300px;"> </div> <input type="button" value="click me" onclick="GetChartData()"/> function GetChartData(){ var postURL = 'abc.aspx?data=PopUp'; $.ajax({ type: "POST", url: postURL, contentType: "application/json;charset=utf-8", dataType: "json", cache: false, beforeSend: function () { }, success: function (response) { var strJson = response.ChartParams[0]; RenderChart(strJson); }, error: function (msg) { ShowErrorMessage(msg); } }); } function RenderChart(strJson) { var uniqueId = GetUniqueId(); // Like dv_5kF7e var myChart = new FusionCharts("MSCombiDY2D", uniqueId, "800", "320", "0", "1"); myChart.setJSONData(strJson); myChart.render("dvGraph"); } it work on first time with actual width:800 and hegiht: 320 but after that its not getting its actual height and width. Please refer Image1.jpg its good but after that height and width not working. But i regularly set height and width by calling RenderChart method. .
  2. In attached image there is a legend area in red rectangle. Can we customize the legend as attached pictures. For reference please follow the attached image.