Closed Vnam92 closed 5 years ago
Will close issue.
Resolved by importing additional module :
import * as charts from "fusioncharts/fusioncharts.powercharts";
Hey @Vnam92, For Vue.js I also had to add this import. Exemple with Nuxt.js. Thanks!
import VueFusionCharts from 'vue-fusioncharts';
import FusionCharts from 'fusioncharts';
import Charts from 'fusioncharts/fusioncharts.charts';
// Below the import I have to add
import PowerCharts from "fusioncharts/fusioncharts.powercharts";
export default defineNuxtPlugin(nuxtApp => {
// And then add here
nuxtApp.vueApp.use(VueFusionCharts, FusionCharts, Charts, PowerCharts);
})
Hi, there! I'm getting below error if choose heatmap as type for fusion-chart in Angular v.7 app.
It reproduces even if use chart configuration from official docs: https://www.fusioncharts.com/charts/heat-map-charts/heat-map-using-variants-of-single-color?framework=angular4
P.S. For other types of charts, they render fine and my imports of chart-modules matches to official tutorials. Versions of fusion charts:
angular-fusioncharts: ^3.0.3
fusioncharts: ^3.14.0-sr.1
my template:
Is it known issue?