Please visit the official Apache ECharts Website at

https://echarts.apache.org
Visit Official Website
x

FAQ

Frequently asked questions

Apache EChartsTM

General Questions

What to do if you have technical problem?

1) It is recommended that you read the navigation on the left side of the option manual before you ask questions. In the option manual, you can find out what configuration items does ECharts have. And you can find under the relevant components whether there are configuration items that can implement the functions you need.

2) Browse FAQ questions on this page.

3) Create a simple example to reproduce your problem on Official Editor, CodePen, CodeSandbox or JSFiddle. If you can't use the code to describe the requirements, you can try to provide a design draft or draw a sketch.

4) Ask questions on stackoverflow and attach the example link.

Is ECharts free to use?

Yes, ECharts is open-sourced under Apache License 2.0.

Axis

What should I do if the axis label doesn't have enough space?

You can use interval to control how many labels are displayed, set it to 0 to display all labels.

Or you can set axisLabel.rotate to rotate the label a certain angle.

Why does it not work when you want to put the axis on the right side?

You need to set onZero to false.

How do I force the first / last label of the axis to be displayed?

Both axisLabel.showMinLabel and axisLabel.showMaxLabel are supported since ECharts version 3.5.2. It can be used to control whether the first / last tags are forced to display.

legend

What should I do if the legend area overlapped on the chart?

You can set the grid to control the position of the chart area. For example, Set a larger grid.top to move drawing area down.

We are planning to make the layout smarter in the future versions.

line-chart

The ticks on the coordinate axis seems different with the data?

Check if you set the stack. You should remove it if you don't want to make a stack line chart.

bar-chart

Why does the y-axis scale disappear when the values are small?

Version 3.5 of ECharts has been fixed this issue.

map-chart

Province names overlap on the chart. How to modify the location of the names?

You can modify the cp coordinates of the corresponding province in the map file (JS or JSON), or modify the map data that has been loaded by echarts.getMap('china').

For more details, please refer to GitHub.

Where can I download maps from other countries?

Map information for other countries can be downloaded from here.

How can I get the zoom event of a map?

First, you need to set the series's roam to true and then listen for the 'georoam' event. Such as:

myChart.on('georoam', function (params) {
   console.log(params);
});

How to make my custom map?

The ECharts map is additionally encoded from original coordinates. You can use the mapshaper-plus tool to upload a custom geojson file and then generate a map file that can be used in Echarts.

baidu-map

How to use ECharts with Baidu Map?

  1. Include echarts.js, bmap.js and https://api.map.baidu.com/api?v=3.0&ak=Here is the access key you obtained on the Baidu development platform.
  2. Set bmap in option,You can refer to this example.
  3. If you need to get a Baidu map instance, you can use chart.getModel().getComponent('bmap').getBMap(),and then make do settings based on Baidu Maps API .

gauge-chart

How to set the dashboard color?

You can use axisLine.lineStyle.color.

Event processing

How do I get events such as chart clicks?

Read the official tutorial. The types of events supported by ECharts can be found in the related API.

others

Why is the chart not displayed?

You can check the following situations:

  • Whether echarts.js is loaded normally.
  • Whetherecharts variable exists.
  • Whether the DOM container has a width or height when calling echarts.init.

Why does the chart not work correctly when using ECharts in Vue?

  • If you are using Vue 3, avoid using reactive and ref.
  • If you are using Vue 2, avoid declaring the ECharts instance object in the data function or using the Vue.observable API.

All of the above will cause the ECharts instance object to be proxied as a reactive object, which may affect the access to the properties of inner models of ECharts and bring some unexpected issues and lousy performance.

The suggestion is to declare the ECharts instance object as a normal variable, or use shallowRef / shallowReactive / markRaw API to prevent the instance object from being proxied.

See also #17723 and the usage caution from Vue documentation.

Are there more resources for learning ECharts?

Please refer to awesome-echarts for more related projects and resources.