ComposeCharts icon indicating copy to clipboard operation
ComposeCharts copied to clipboard

Building cart by dots, irregular xAxis intervals

Open brucemax opened this issue 5 months ago • 4 comments

Hi, quick question: how should I plot data points if they're collected at irregular intervals? So I need build cart by points for example: (x:0,y:3);(x:3,y:3);(x:10,y:3) Is there a recommended way to handle unevenly spaced data points in the current implementation? Thanks!

brucemax avatar Jul 15 '25 01:07 brucemax

@brucemax I have the same question. Did you find out how to make that?

Daanfb avatar Aug 07 '25 15:08 Daanfb

Hi, if you mean you want to show data in mathematical coordinate axis, it's not possible currently you cant define x axsis for data

ehsannarmani avatar Aug 07 '25 18:08 ehsannarmani

@ehsannarmani Thanks for your reply. I hope it will be available in following updates, it would be a useful feature

Daanfb avatar Aug 08 '25 07:08 Daanfb

I just handled these "filler" points using a simple equation to calculate the points between

x:0 -> calculated y points -> x:3 -> calculated y points -> x:10

herrrta avatar Oct 03 '25 18:10 herrrta