ApexCharts: set display boolean of one specific y axis tooltip - apexcharts

I am working with a Multi Axis line chart by ApexCharts.js.
What I want to do
I have multiple y axes and some series share the same y axis. Since there is no y axis ID, you have to create a y axis for every series matching the index of the series. That's why the last y axis is not shown - but its tooltip is still shown (as seen in the following picture).
I want to hide the tooltip for that y axis since the y axis itself is also hidden.
I tried to set the tooltip.enabled property for each y axis but that didn't seem to work for individual y axes:
yaxis: [{
seriesName: 'TEAM A',
showAlways: true,
title: {
text: 'A-Axis'
},
tooltip: {
enabled: true
}}]
https://codepen.io/niklhs/pen/OJyyzoa
Then I tried to set the tooltip.enabledOnSeries property:
https://codepen.io/niklhs/pen/yLYBeJb
That didn't work either unfortunately.
Any ideas?

For anyone running into the same issue:
This is now possible with ApexCharts 3.19.0.
Just update the ApexCharts dependency and you‘re good to go with the following solution:
tooltip: {
enabled: false
}
Full code example:
https://codepen.io/niklhs/pen/PoPWvWz

Related

In a Stacked Line Chart, is there a way to stack multiple Y-Axes to match each graphed line?

Example of Stacked Y-Axes
I can't figure out a way in Chart.js to get the Y-Axes to stack like I have in the example picture.
When I keep the scales object simple like this:
scales: {
y: {
stacked: true,
title: {
display: true,
text: "Temperature (°C)",
}
},
x: {
type: "time",
time: {
tooltipFormat: "LTS",
unit: "hour",
},
title: {
display: true,
text: "Datetime",
},
}
},
I obviously get a single Y-Axis, but instead of scaling to the maximum of any of the datasets, it seems to add each dataset up (ex: Say max Temp from any set is 40 °C, if I have 6 datasets the Y Scale goes from 0 - 250)
Additive Y-Axis example
It does stack all of the lines nicely though so I'm really hoping there is a decent solution as the Y-Axis right now is not helpful to a viewer. Thanks for any help!
With help from the Chart.js Slack channel, the easiest and actually great looking solution was just to separate each dataset into their own chart with only the top most chart showing a legend, and only the bottom chart showing an X-Axis. All middle charts have the X-Axis and legend turned off.

In heatmap apexcharts how can we remove duplicate x axis labels?

How can I remove the duplicates from x axis labels in heatmap apexcharts
Here the JSFiddle Link
click here
Here multiple May months are showing I need to display only one in the Middle of 4 columns.
I tried the below
xaxis: {
labels: {showDuplicates: false}
}
But this is not working as expected.
We need to add the x axis like below and change the x axis value to a date
xaxis: {
type: "datetime",
labels: {
format: 'MMM',
showDuplicates: false}
}
JSFiddle

How to fix the number of gridlines in X-Axis as label are too condensed

How to fix the number of gridlines in X-Axis as label are too condensed.
Example: https://www.chartjs.org/samples/latest/charts/line/basic.html
If we add 60+ Data labels are too condensed, then after some more values axis lines adjust to hide some value in between to show label properly.
Is there a way to control trigger point which adjusts the axis line number ?
Assuming you defined xAxes.time.unit: 'month', you can define time.stepSize as follows.
xAxes: [{
type: 'time',
time: {
unit: 'month',
stepSize: 2
},
time.stepSize: the number of units between grid lines.
Chart.js internally uses Moment.js for the functionality of the time axis. Therefore you should use the bundled version of Chart.js that includes Moment.js in a single file.

Chartjs labels position

At any point I will only have 2 labels, min and max. I would like to bring in the labels like in the design. I have tried mirror but that will affect both min and max. The only way I can think of doing this is by using positioned divs to make it look like labels
Any help would be greatly appreciated
Current:
Expected:
Thanks
You could define options.scales.xAxis.offset = true, this adds extra space to both edges and the axis is scaled to fit into the chart area.
options: {
...
scales: {
xAxes: [{
offset: true,
...
}],
}
}

Chart.js - Line chart does not render all points when using Point[] format

Charts.js does not render all data points when using Point[] format.
Codepen example
Questions:
Why only two out of four data points are rendered for each dataset?
Why there are no ticks on X axis?
Why is "undefined" string shown on point hover?
How can I get both X and Y values display on point hover?
Thank you!
Adding "scales" option fixed the problem:
scales: {
xAxes: [{
type: 'linear',
position: 'bottom',
}]
}