If you paste the following into the “try it” edit box, notice that any zero value renders as a # of the top of the chart.
The only solution I’ve found is to set all zeros to 1. Am I missing something or is this a bug?
CanvasJS.Chart(“chartContainer”,{
axisY: { logarithmic: true },
data: [{
type: “line”,
dataPoints: [{y:10},{y:0},{y:50},{y:65},{y:150},{y:400},{y:950},{y:4500},{y:10000}]
}] });
Thank you!
Michael