Search the Community

Showing results for tags 'click'.



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 3 results

  1. I am creating fusion charts in .net by passing json data Its working fine. Chart MyFirstChart = new Chart(chartType, chartName, "100%", height.ToString(), "json", jsonData.ToString()); data is collected from a data table from sql server and converted to json string My data table has the following data : Date No of students Percentage Name of Department I would like to add an event that if a data plot is clicked more details are shown by showing data from a different data table, which contains more details of that Department I added the event MyFirstChart.AddEvent("dataPlotClick" , "dataPlotClick"); // render chart return MyFirstChart.Render(); and called this event in a java script <script> dataPlotClick = function (eventObj, dataObj) { console.log(eventObj); var header = document.getElementById('header'); header.style.display = 'block'; var tempDiv = document.createElement('div'); var attrsTable = document.getElementById('attrs-table'); var titleDiv, valueDiv; for (var prop in dataObj) { titleDiv = document.createElement('div'); titleDiv.className = 'title'; titleDiv.innerHTML = prop; valueDiv = document.createElement('div'); valueDiv.className = 'value'; valueDiv.innerHTML = dataObj[prop]; tempDiv.appendChild(titleDiv); tempDiv.appendChild(valueDiv); } attrsTable.innerHTML = ''; attrsTable.appendChild(tempDiv);}; </script> the click on data plot works fine but id gets the data of the current data table , and I would like to get the more detailed data table and show in a table view in the asp page. Is there a way to do that ?
  2. Hi, When FC was on 3.10 version, the multi-series line chart had a nice functionality : when clicking on legend, the line is going from its position to below and by clicking again from below to its position, this was really a nice animation. Since the 3.11 version, why did you disable it ? Is there any option to reactivate it ? Thank you, Sébastien
  3. Modal Window on entity click?

    Hello We are working with Fusion maps and liking it. We have a map that has custom info when a user mouses over a country. The info for each country is a list of links to studies the user can download. What I'd like to do is have that list open in a modal window on entity click. I think I can do it, but just wonder if it has been done, is it possible with fusionmaps (so I don't waste time) and best practices for that if any. Thanks Craig Siave.