Skip to content

Commit 582428b

Browse files
committed
bug #206 Chart.js: remove unusable horizontalBar type in chart model (duboiss)
This PR was merged into the 2.x branch. Discussion ---------- Chart.js: remove unusable horizontalBar type in chart model | Q | A | ------------- | --- | Bug fix? | yes | New feature? |no <!-- please update src/**/CHANGELOG.md files --> | Tickets | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead --> | License | MIT [https://www.chartjs.org/docs/3.2.0/getting-started/v3-migration.html#chart-types](https://www.chartjs.org/docs/3.2.0/getting-started/v3-migration.html#chart-types) I also added the chart.js update to the changelog. Commits ------- f06aaf5 Chart.js: remove unusable horizontalBar type in chart model
2 parents ea5e6e6 + f06aaf5 commit 582428b

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/Chartjs/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
version 3 was added. See the [@symfony/stimulus-bridge CHANGELOG](https://github.com/symfony/stimulus-bridge/blob/main/CHANGELOG.md#300)
77
for more details.
88
- Support added for Symfony 6
9+
- Upgrade Chart.js to version 3
910

1011
## 1.3
1112

src/Chartjs/Model/Chart.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ class Chart
2121
{
2222
public const TYPE_LINE = 'line';
2323
public const TYPE_BAR = 'bar';
24-
public const TYPE_BAR_HORIZONTAL = 'horizontalBar';
2524
public const TYPE_RADAR = 'radar';
2625
public const TYPE_PIE = 'pie';
2726
public const TYPE_DOUGHNUT = 'doughnut';

0 commit comments

Comments
 (0)