Chart.qml
Chart.qml copied to clipboard
bar chart show no bar when minValue equal maxValue
I found it didn't work when 'valueRange = maxValue - minValue ' is zero. So I add 'if (maxValue === minValue) maxValue = maxValue +10' to make it work. is there a better way?