Skip to content

Commit

Permalink
Remove forced data label coloring
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBernskiold committed Nov 12, 2024
1 parent 4f2e36d commit 4a9382b
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/Components/Charts/Line.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@ protected function chartTypeSeriesData(Series $series, int $index, array $series
{
$seriesColor = $this->getSeriesColorFromData($seriesData, $index);

$series->getFont()
->setName($this->slide->presentation->branding->baseFont())
->setColor($seriesColor)
->setBold(true);

$outline = (new Outline);
$outline->setWidth(2);
$outline->getFill()
Expand All @@ -51,8 +46,7 @@ protected function chartTypeSeriesData(Series $series, int $index, array $series

$series->getMarker()
->getBorder()
->getColor()
->setARGB('ffffffff');
->setLineWidth(0);

$series->getMarker()
->getFill()
Expand Down

0 comments on commit 4a9382b

Please sign in to comment.