Questions tagged [apache-echarts]
134 questions
0
votes
1 answer
Creating a red title and a shadow box with Apache ECharts?
In this demo I'm trying to make the title red and create a shadow blur, however the settings are not having any effect.
var dom = document.getElementById("chart-container");
var myChart = echarts.init(dom, null, {
renderer: "canvas",
…

Ole
- 41,793
- 59
- 191
- 359
0
votes
0 answers
Is it possible to draw an Apache eCharts grid heatmap on Google Maps?
I'm trying to draw an Apache eCharts grid heatmap on Google Maps to achieve the result shown in this screenshot from the following address: https://echarts.apache.org/examples/en/editor.html?c=map-bin.
I have attempted to use the…

Short Circuit
- 11
- 3
0
votes
0 answers
Apache echarts parallel chart parallel axis emphasis
I am using echarts to create a parallel chart. I am trying to create an emphasis on 2 elements at the same time but I feel like one of the element I am trying to create the emphasis on does not support it.
Are there any workarounds where I would be…

Alexis
- 57
- 11
0
votes
0 answers
"Error: yAxis "0" not found" console error for mixed line and Bar graph echarts
I'm getting this console error when I try to add the third axis and give yaxis index to the line graph data.
widgetData: [
{
name: 'AssignmentHours.Hours',
type: 'bar',
data: getChartData(
[20, 40,…

Harrish Selvarajah
- 1,763
- 12
- 11
0
votes
0 answers
Echarts align tooltip with different xAxis
I'm using the Echarts library for React and I'm stuck on this problem.
I have two charts with this data:
x: array of Date
y: array of numbers
They are plotted and connected using the connect API: in this way, the mouseover event on the two charts…

alex
- 380
- 3
- 8
0
votes
0 answers
Increase color contrast of emphasis state in ECharts bar series (ECharts 5.4.1)
In Apache ECharts 5.4.1, I have a bar series that I've put the second item from the top in the emphasis state to highlight (via chart.dispatchAction({type: 'highlight'}), but as you can see from the picture below, the default color contrast is so…

Paul W
- 5,507
- 2
- 2
- 13
0
votes
0 answers
How to keep e-charts from changing the SVG element properties of a named element?
This Simple SVG map example uses an SVG with 3 lines with the same strokes:
the top blue line has no name attribute
the middle green line has name=Line 1
the bottom line has name=Line 2

TmTron
- 17,012
- 10
- 94
- 142
0
votes
1 answer
Echarts bar chart is filling from 0 when the x-axis data changes
I'm using echarts 5.4.0
I want to use echarts bar chart as a historical chart, meaning the x-axis data should change on every 5 seconds. The x-axis data consists of dates
The issue I'm facing is that every time when the x-axis data is changing the…

Galya Ts.
- 21
- 2
0
votes
0 answers
How to specify format for x-values in dataView if axis type is time?
I have some chart with a time axis. In the dataView I would like to see the time in years instead of ms.
=> Is there some option to influence the time format for the dataView?
Or would I need to implement a whole dataView using…

Stefan
- 10,010
- 7
- 61
- 117
0
votes
0 answers
Apache Echarts for react
How can I handle button with on click action inside the custom tooltip? I tried several times but all attempts failed is there a way to generate on click at btn on tooltip
or apache echarts prevent that I handled that using several ways one of them…

Osama Mohamed Ammar
- 81
- 6
0
votes
0 answers
ECharts Gauge : stacking values
I was wondering how, if even possible, I can stack 2 gauge values like we can do with stacked bar chart.
The scheduled and completed values should be stacked together so 'completed' comes first, and 'scheduled' comes after, going all the way to 21…

Mopster
- 89
- 7
0
votes
0 answers
Apache ECharts xaxis labels not being fully shown
I'm creating a chart with Apache Echarts for Angular, and I'm having trouble to see all the x labels.
Here is the image of what I see. I need the first xaxis label to be align to the left, the last xaxis label to the right (so both are seen), and…
0
votes
0 answers
Converting this APACHE ECHARTS example into react (CIRCULAR PACKING)
https://echarts.apache.org/examples/en/editor.html?c=circle-packing-with-d3
i am trying to implement this Circular packing example found on Apache Echarts into my react web app.
With the rest of the Echart examples, implementing the Echarts…

damienc11
- 31
- 3
0
votes
2 answers
How to minimize the space between the text and subtext in the Doughnut Chart of ECharts?
I am using ECharts to create a Doughnut chart and I would like to display static text in the center of the chart. However, there is a space between the text and subtext that I am unable to reduce. Can somebody please assist me in resolving this…

Muhammad Ali
- 1
- 2
0
votes
1 answer
How to render a legend as a rich table in echarts?
An example here demonstrates a very sophisticated label:
Label seems to be rendered by a formatter prop with some very rich styles:
label: {
formatter: [
'{title|{b}}{abg|}',
' …

jayarjo
- 16,124
- 24
- 94
- 138