asantibanez / livewire-charts

Neat Livewire Charts for your Laravel projects
MIT License
788 stars 116 forks source link

Added more configuration options to column chart #72

Closed AdrianBav closed 2 years ago

AdrianBav commented 2 years ago

Summary

Add additional configuration options for column charts

Issue

  1. Allow for positioning data labels just above the charts columns
  2. Allow x-axis labels to be set at right angles
    $columnChartModel =
        (new ColumnChartModel())
            ->setTitle('Expenses by Type')
            ->addColumn('Food', 100, '#f6ad55')
            ->addColumn('Shopping', 200, '#fc8181')
            ->addColumn('Travel', 400, '#90cdf4')
            ->withDataLabels()
            // Allow for positioning data labels just above the charts columns
            ->setDataLabelsPosition('top')
            ->setDataLabelsOffsetY(-20)
            ->setDataLabelsStyleColors(['#304758'])
            // Allow x-axis labels to be set at right angles
            ->setXAxisLabelAngle(-90)
        ;

Type of Change

Screenshot/Video

Capture

AdrianBav commented 2 years ago

Split up feature