infinum/flutter-charts

Is it possible to have two lines with different horizontal axis values?

roly151 opened this issue · 2 comments

I would like to create a line chart with two lines. But the horizontal axis values for each line need to be different. One is a temperature (so could be 0 to 40 degrees), the other one is a chance of rain (so could be 0% to 100%). Is this possible?

Hopefully the question makes sense.

Hey @roly151

If I understand correctly I think easiest way to do this is just to build 2 charts and add them in a Stack.
Currently library is not supporting different X or Y coordinates for different data on same chart.

Thanks - I did consider that. I'll give it a go.