
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
FusionCharts Suite XT is a front-end, JavaScript-based, comprehensive collection of 90+ charts and 1000+ maps. This includes simple and complex charts (like the column and bar charts, pie and doughnut charts, the treemap, heatmap, and logarithmic charts)
FusionCharts Suite XT is a front-end, JavaScript-based, comprehensive collection of 90+ charts and 1000+ maps. This includes simple and complex charts (like the column and bar charts, pie and doughnut charts, the treemap, heatmap, and logarithmic charts), gauges (like the angular gauge, bulb gauge, and the thermometer gauge) and maps (all continents, major countries, and all US states).
The fusioncharts package includes files for all charts and widgets offered by the product. In order to limit the package size, it includes map definition files for only two maps—the world map and the USA map.
It is recommended that you download the fusionmaps package if you want to render maps. This package includes the complete FusionCharts Suite XT as well as the map definition files for all maps.
Install the FusionCharts package.
npm install fusioncharts
Load FusionCharts using require.
var FusionCharts = require("fusioncharts");
Load the charts module using require.
require("fusioncharts/fusioncharts.charts")(FusionCharts);
Create the FusionCharts instance required to render the chart.
var chart = new FusionCharts ({
"type": "column2d",
"width": "500",
"height": "300",
"dataFormat": "json",
"dataSource": {
chart:{},
data: [{value: 500}, {value: 600}, {value: 700}]
}
}).render("chartContainer");
To render a chart belonging to the PowerCharts package, load the PowerCharts module:
require("fusioncharts/fusioncharts.powercharts")(FusionCharts);
To render a chart belonging to the FusionWidgets package, load the FusionWidgets module:
require("fusioncharts/fusioncharts.fusionwidgets")(FusionCharts);
To know which chart belongs to which package, refer the list of charts.
require("fusioncharts/fusioncharts.maps")(FusionCharts);
require("fusioncharts/maps/fusioncharts.world")(FusionCharts);
To know the map definition file names, refer the list of maps.
Note: The map definition files have to be included for all maps that you want to render in your application. Unlike the core files that are stored in the fusioncharts directory, all map definition files are stored in the maps directory and are required to be fetched from there.
For some chart types, you need to include/exclude certain files and in a certain order. These chart types and the corresponding files are mentioned below:
var FusionCharts = require("fusioncharts");
require("fusioncharts/fusioncharts.charts")(FusionCharts);
require("fusioncharts/fusioncharts.zoomscatter")(FusionCharts);
var FusionCharts = require("fusioncharts");
require("fusioncharts/fusioncharts.powercharts")(FusionCharts);
require("fusioncharts/fusioncharts.treemap")(FusionCharts);
var FusionCharts = require("fusioncharts");
require("fusioncharts/fusioncharts.ssgrid")(FusionCharts);
var FusionCharts = require("fusioncharts");
require("fusioncharts/fusioncharts.gantt")(FusionCharts);
Install the FusionCharts package.
bower install fusioncharts
Load FusionCharts module.
<script src="bower_components/fusioncharts/fusioncharts.js"></script>
Load the charts module.
<script src="bower_components/fusioncharts/fusioncharts.maps.js"></script>
Create the FusionCharts instance required to render the chart.
<script>
new FusionCharts({
"type": "column2d",
"width": "500",
"height": "300",
"dataFormat": "json",
"dataSource": {
chart:{},
data: [{value: 500}, {value: 600}, {value: 700}]
}
}).render("chartContainer");
</script>
To render a chart belonging to the PowerCharts package, load the PowerCharts module:
<script src="bower_components/fusioncharts/fusioncharts.powercharts.js"> </script>
To render a chart belonging to the FusionWidgets package, load the FusionWidgets module:
<script src="bower_components/fusioncharts/fusioncharts.fusionwidgets.js"> </script>
To know which chart belongs to which package, refer the list of charts.
<script src="bower_components/fusioncharts/fusioncharts.maps.js"> </script>
<script src="bower_components/fusioncharts/maps/fusioncharts.world.js"> </script>
To know the map definition file names, refer the list of maps.
Note: The map definition files have to be included for all maps that you want to render in your application. Unlike the core files that are stored in the fusioncharts directory, all map definition files are stored in the maps directory and are required to be fetched from there.
For some chart types, you need to include/exclude certain files and in a certain order. These chart types and the corresponding files are mentioned below:
<script src = "bower_components/fusioncharts/fusioncharts.js"> </script>
<script src = "bower_components/fusioncharts/fusioncharts.charts.js"> </script>
<script src = "bower_components/fusioncharts/fusioncharts.zoomscatter.js"> </script>
<script src = "bower_components/fusioncharts/fusioncharts.js"> </script>
<script src = "bower_components/fusioncharts/fusioncharts.powercharts.js"> </script>
<script src = "bower_components/fusioncharts/fusioncharts.treemap.js"> </script>
<script src = "bower_components/fusioncharts/fusioncharts.js"> </script>
<script src = "bower_components/fusioncharts/fusioncharts.ssgrid.js"> </script>
<script src = "bower_components/fusioncharts/fusioncharts.js"> </script>
<script src = "bower_components/fusioncharts/fusioncharts.gantt.js"> </script>
When FusionCharts is installed via npm, the downloaded package contains the following directories and files:
node_modules/
└── fusioncharts/
│
├── package.json
│
├── maps/
│ ├── fusioncharts.world.js
│ └── fusioncharts.usa.js
│
├── themes/
│ ├── fusioncharts.theme.carbon.js
│ ├── fusioncharts.theme.fint.js
│ ├── fusioncharts.theme.ocean.js
│ └── fusioncharts.theme.zune.js
│
├── fusioncharts.js
├── fusioncharts.charts.js
├── fusioncharts.zoomscatter.js
├── fusioncharts.powercharts.js
├── fusioncharts.gantt.js
├── fusioncharts.treemap.js
├── fusioncharts.widgets.js
└── fusioncharts.maps.js
When FusionCharts is installed via Bower, the downloaded package contains the following directories and files:
bower_components/
└── fusioncharts/
│
├── maps/
│ ├── fusioncharts.world.js
│ └── fusioncharts.usa.js
│
├── themes/
│ ├── fusioncharts.theme.carbon.js
│ ├── fusioncharts.theme.fint.js
│ ├── fusioncharts.theme.ocean.js
│ └── fusioncharts.theme.zune.js
│
├── fusioncharts.js
├── fusioncharts.charts.js
├── fusioncharts.zoomscatter.js
├── fusioncharts.powercharts.js
├── fusioncharts.gantt.js
├── fusioncharts.treemap.js
├── fusioncharts.widgets.js
└── fusioncharts.maps.js
FAQs
FusionCharts Suite XT is a front-end, JavaScript-based, comprehensive collection of 90+ charts and 1000+ maps. This includes simple and complex charts (like the column and bar charts, pie and doughnut charts, the treemap, heatmap, and logarithmic charts)
The npm package fcharts receives a total of 5 weekly downloads. As such, fcharts popularity was classified as not popular.
We found that fcharts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.