Closed henricazottes closed 3 years ago
Hi @henricazottes , Sorry it took that long. Next PR will fix this issue. Here's an example:
Code:
var initial_data : Array = [
["Time","Alt","Alt2"],
[1.0, 1.0, 0.25],
[2.0, 0.0, 0.05],
[3.0, 0.5, 5.5],
]
func _ready():
$LineChart.plot_from_array(initial_data)
Related pic:
Describe the bug Having a line chart with values exclusively under 1 make it fail to plot.
To Reproduce Steps to reproduce the behavior:
func _ready(): var initial_data: Array = [ ["Time","Alt"], ["1.0","0.0"], ["2.0","0.0"], ["3.0","0.5"] ] $LineChart.plot_from_array(initial_data)