File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/PhpPresentation/Shape/Chart/Type
tests/PhpPresentation/Tests/Shape/Chart/Type Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -96,8 +96,8 @@ public function setBarGrouping($value = self::GROUPING_CLUSTERED)
96
96
{
97
97
$ this ->barGrouping = $ value ;
98
98
$ this ->overlapWidthPercent = 0 ;
99
-
100
- if ( $ value === self ::GROUPING_STACKED || $ value === self ::GROUPING_PERCENTSTACKED ) {
99
+
100
+ if ( $ value === self ::GROUPING_STACKED || $ value === self ::GROUPING_PERCENTSTACKED ) {
101
101
$ this ->overlapWidthPercent = 100 ;
102
102
}
103
103
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ public function testOverlapWidthPercentDefaults(): void
94
94
{
95
95
$ object = new Bar ();
96
96
$ this ->assertEquals (0 , $ object ->getOverlapWidthPercent ());
97
-
97
+
98
98
$ object ->setBarGrouping (Bar::GROUPING_STACKED );
99
99
$ this ->assertEquals (100 , $ object ->getOverlapWidthPercent ());
100
100
$ object ->setBarGrouping (Bar::GROUPING_CLUSTERED );
You can’t perform that action at this time.
0 commit comments