Hi,
in my stacked column chart i need a cleaner formating / scaling. The bars should only have a with by 1 day / date or with other words, on axis a date should only appear once.
<img src="<img src=”https://i.ibb.co/y8j9rMj/Unbenannt.png” alt=”Unbenannt” border=”0″ />” alt=”Image” />
axisX:{
labelFontFamily: font,
margin: 10,
labelFormatter: function (e) {
return CanvasJS.formatDate( e.value, “DD MMM YYYY”);
},
},
dataPoints: Array(2)
0:
x: Wed Apr 29 2020 02:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)
y: 1
1:
x: Fri May 01 2020 02:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)
y: 1
And how can i show the Date in Tooltip of the bar?
-
This topic was modified 4 years, 3 months ago by mwick. Reason: Image broken