vladanyes / react-native-skia-charts

High-performance charts for react-native 🚀
MIT License
142 stars 9 forks source link

Support for stacked bar chart #2

Closed vladanyes closed 1 year ago

vladanyes commented 1 year ago

add stacked bar chart implementation where the data/datasets prop should be similar to this:

  {
    label: 'First item',
    color: 'red',
    data: [
      {
        date: '2020-01-01',
        value: 10,
      },
      ...
    ],
  },
  {
    label: 'Second item',
    color: 'green',
    data: [
      {
        date: '2020-01-02',
        value: 20,
      },
      ...
    ],
  },
  ...
];
adityakmr7 commented 1 year ago

Hi @vladanyes can pick it up ? please assign it to me

vladanyes commented 1 year ago

hey @adityakmr7 , thank you for the interest in this library! The thing is, I implemented stacked bar chart using react-native-skia a couple months ago. Now I need to do some cleanups and improvements prior to adding it to this repo.

adityakmr7 commented 1 year ago

Cool, I also wanted to create a library for chart using react-native-skia. I would love to contribute to this project of yours. Let me know if you need any help. And I will also try to add some of the graph type in this repo.