Search the Community

Showing results for tags 'charts'.



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

  1. I am plotting a multiseries chart using data from database in java . The Chart attributes that I put are as follows: I have around 2880 points to plot.(Atleast 1000 minimum) for which i need scrollbars. currently the poits are all clustered and not visible. chartConfig.put("theme", "fusion"); chartConfig.put("caption", "Countries With Most Oil Reserves [2017-18]"); chartConfig.put("subCaption", "In MMbbl = One Million barrels"); chartConfig.put("xAxisName", "Country"); chartConfig.put("yAxisName", "Reserves (MMbbl)"); chartConfig.put("linethickness", "3"); chartConfig.put("flatScrollBars", "1"); chartConfig.put("scrollheight", "10"); chartConfig.put("numVisiblePlot", "12"); chartConfig.put("showHoverEffect", "1"); chartobj.put("paletteColors", "#0075c2,#1aaf5d"); chartobj.put("bgcolor", "#ffffff"); chartobj.put("showBorder", "1"); categories.add(buildCategories("datetime", rs, gson)); dataset.add(buildDataset("Y_actual","y_actual", rs1, gson)); dataset.add(buildDataset("Y_hat", "y_predicted", rs2, gson)); dataMap.put("chart", gson.toJson(chartobj)); dataMap.put("categories", gson.toJson(categories)); dataMap.put("dataset", gson.toJson(dataset)); FusionCharts mslineChart= new FusionCharts( "msline",// chartType "chart1",// chartId "700","400",// chartWidth, chartHeight "chart",// chartContainer "json",// dataFormat gson.toJson(dataMap) //dataSource ); Scrollbar is not getting implemented in the chart . kindly suggest.
  2. I have read all of the postings on chart type not supported but have not been able to solve my problem. Also.. all of the JSFiddle examples you posted dont work. Here is my file import React, { Component } from 'react'; import logo from './logo.svg'; import './App.css'; import './App.js'; import logos from './google_logo.png' // relative path to image import Grid from './Grid_Icon.png' // relative path to image import ReactDOM from 'react-dom'; import fusioncharts from 'fusioncharts'; // Load the charts module import charts from 'fusioncharts/fusioncharts.charts'; import ReactFC from 'react-fusioncharts'; var attrs = { "caption": "Sales Comparison: 2013 versus 2014", "subCaption": "Harry's SuperMart", "numberprefix": "$", "plotgradientcolor": "", "bgcolor": "FFFFFF", "showalternatehgridcolor": "0", "divlinecolor": "CCCCCC", "showvalues": "0", "showcanvasborder": "0", "canvasborderalpha": "0", "canvasbordercolor": "CCCCCC", "canvasborderthickness": "1", "yaxismaxvalue": "30000", "captionpadding": "30", "linethickness": "3", "yaxisvaluespadding": "15", "legendshadow": "0", "legendborderalpha": "0", "palettecolors": "#f8bd19,#008ee4,#33bdda,#e44a00,#6baa01,#583e78", "showborder": "0" }; var categories = [{ "category": [{ "label": "Jan" }, { "label": "Feb" }, { "label": "Mar" }, { "label": "Apr" }, { "label": "May" }, { "label": "Jun" }, { "label": "Jul" }, { "label": "Aug" }, { "label": "Sep" }, { "label": "Oct" }, { "label": "Nov" }, { "label": "Dec" }] }]; var dataset = [{ "seriesname": "2013", "data": [{ "value": "22400" }, { "value": "24800" }, { "value": "21800" }, { "value": "21800" }, { "value": "24600" }, { "value": "27600" }, { "value": "26800" }, { "value": "27700" }, { "value": "23700" }, { "value": "25900" }, { "value": "26800" }, { "value": "24800" }] }, { "seriesname": "2012", "data": [{ "value": "10000" }, { "value": "11500" }, { "value": "12500" }, { "value": "15000" }, { "value": "16000" }, { "value": "17600" }, { "value": "18800" }, { "value": "19700" }, { "value": "21700" }, { "value": "21900" }, { "value": "22900" }, { "value": "20800" }] } ]; class App extends Component { render() { return ( <div> <div id="box"> <div id="logo"> <img src={logos} alt={"logo"}/> </div> <div></div> <div id="Rider-Text" class="flexcontainer"> Passengers to Date </div> <div class="clock"></div> ReactDOM.render( <ReactFC width="600" height="400" type="msline" chart="attrs" categories="categories" dataset="dataset" />, document.getElementById('chart-container') ); <div id="Rider-Text" class="flexcontainer"> Launched | </div> <div id="Rider-Text-Small" class="flexcontainer"> 2/3/2015 </div> <div id="chart-container">FusionCharts XT will load here!</div> </div> <div id="grid" class="flexcontainer"> <a href="#"><img src={Grid} alt={"logo"}/></a> </div> </div> ); } } export default App;
  3. Hi, i have tried to search a graph with zoomline animation but this does not exist. It's correct? It's not implemented yet?
  4. Hello to everyone, I just migrated to the new version of FusionCharts. The only thing I can not understand is how to change the menu for data export. I would like to be able to move it down to the chart or left; Is there anybody who could guide me some guide? Thank you all.
  5. Render Chart in Email

    I am trying to send an email with an embedded chart. If i generate the HTML normally I am able to render the chart and see its functionality. However, when I embed the HTML of the chart into another HTML template which gets sent out as an email, the chart does not render. Is this even possible to do with Fusion charts ? Am I missing something else ?
  6. Hello FusionCharts-land. Ok so I have a new problem. I have many charts on a single ASP.Net page. I say many I actually only mean 9. The problem is that 3 of these charts are intermittently not printing. I've tracked down how to MAKE it print successfully - scroll down so every chart has been partially visible. Needless to say - this shouldn't have to be the case. I've attached good and bad examples of the print. Any thoughts on making this work aside from the slightly hacky make it scroll to the bottom automatically just before calling window.print?
  7. Hi all, We have set up a dashboard with charts rendering from a list on the sharepoint site, the dashboard has 6 charts and are taking up to 40+ seconds to render. We are using sharepoint 2010. To give a brief intro, the source list contains approximately 1500 rows which is a very low volume. The charts perform aggregation based grouped fields which is standard and there are little or no calculated fields. We have tried indexing key fields and using views, but still no improvement. Any ideas/solutions would be greatly appreciated :-) Thanks
  8. Hi, Is there a new WAR file with the new libraries? My exports don't work properly, for export to pdf, png, svg and jpeg. As well, I used to have a 3d pie chart that when right clicked on, would be able to show the 2d version. I've lost that functionality, is there some way to show the 2d version? Thanks, Shashank
  9. Maps with charts

    We have created a dashboard for our Education Montor which has been a great success. We now want to do one for our Youth site but with the charts opening directly from the map. This means it is the master chart is there a way to have the close button on the master chart?
  10. We noticed that the logo we display in the bottom-right corner of the chart looks fine (using logoURL='sssss.png'). However, when we download the chart in pure JavaScrpt the logo is not included in the saved file.
  11. How we can Export Multi-series Fusion chart along with dataset(i.e Table View) that we are providing in PPt/Excel/Word/Pdf?