| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Ui\V1; |
| 6: | |
| 7: | enum ChartType: int |
| 8: | { |
| 9: | case Column = 0; |
| 10: | case ColumnStacked = 1; |
| 11: | case ColumnDual = 2; |
| 12: | case ColumnStackedDual = 3; |
| 13: | case ColumnStacked100 = 4; |
| 14: | case ColumnStackedDual100 = 5; |
| 15: | case Bar = 6; |
| 16: | case BarStacked = 7; |
| 17: | case BarDual = 8; |
| 18: | case BarStackedDual = 9; |
| 19: | case BarStacked100 = 10; |
| 20: | case BarStackedDual100 = 11; |
| 21: | case Area = 12; |
| 22: | case AreaStacked = 13; |
| 23: | case AreaStacked100 = 14; |
| 24: | case HorizontalArea = 15; |
| 25: | case HorizontalAreaStacked = 16; |
| 26: | case HorizontalAreaStacked100 = 17; |
| 27: | case Line = 18; |
| 28: | case LineDual = 19; |
| 29: | case Combination = 20; |
| 30: | case CombinationStacked = 21; |
| 31: | case CombinationDual = 22; |
| 32: | case CombinationStackedDual = 23; |
| 33: | case HorizontalCombinationStacked = 24; |
| 34: | case Pie = 25; |
| 35: | case Donut = 26; |
| 36: | case Scatter = 27; |
| 37: | case Bubble = 28; |
| 38: | case Radar = 29; |
| 39: | case HeatMap = 30; |
| 40: | case TreeMap = 31; |
| 41: | case Waterfall = 32; |
| 42: | case Bullet = 33; |
| 43: | case VerticalBullet = 34; |
| 44: | case HorizontalWaterfall = 35; |
| 45: | case HorizontalCombinationDual = 36; |
| 46: | case HorizontalCombinationStackedDual = 37; |
| 47: | case Donut100 = 38; |
| 48: | } |
| 49: | |