Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Grouped Stacked Bars for Timeline (Range Bar) Chart #4256

Closed
jovanadimovska opened this issue Feb 19, 2024 · 1 comment
Closed

Grouped Stacked Bars for Timeline (Range Bar) Chart #4256

jovanadimovska opened this issue Feb 19, 2024 · 1 comment
Labels

Comments

@jovanadimovska
Copy link

jovanadimovska commented Feb 19, 2024

Summary

I would like to have the possibility to have grouped stacked bars for Range Bar chart, as it is already possible for the regular bar chart. Adding the group property should have the same effect as it does for the Bar chart.

API Changes

series: [
  {
    name: 'Bob',
    data: [
      {
        x: 'Design',
        group: 'phase1',
        y: [
          new Date('2019-03-05').getTime(),
          new Date('2019-03-08').getTime()
        ],
        
      }
    ]
  }, ...
]

Intended Use Case

I have a timeline chart where I have many series that I need to fit in one category. Some of them are overlapping and others are not. If I stack them all, I lose information. If I have them all in separate ranges, the row becomes too big.
Ideally, I would split them and have 2-3 groups.
Also it should be possible to not have equal number of bars for each category.

@jovanadimovska jovanadimovska added the feature-request New feature or request label Feb 19, 2024
@jovanadimovska jovanadimovska changed the title Grouped Stacked Bars for Range Bar Chart Grouped Stacked Bars for Timeline (Range Bar) Chart Feb 19, 2024
Copy link

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant