We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was trying to configure the ColumnChartModel in my Livewire component.
ColumnChartModel
Here is the relevant code snippet:
<?php namespace App\Http\Livewire\OrgOwner\Dashboard\Charts; use Asantibanez\LivewireCharts\Models\ColumnChartModel; use Livewire\Component; class ExampleComponent extends Component { private ColumnChartModel $columnChartModel; public function initData(): void { $this->columnChartModel = (new ColumnChartModel())->setJsonConfig([]); } }
When I try to execute this code, I receive the error mentioned above.
I expected the setJsonConfig() method to configure the JSON settings for the chart model.
setJsonConfig()
The method setJsonConfig() does not seem to exist in the ColumnChartModel class.
Is there a recommended approach to achieve this functionality, or is this a potential bug in the library?
Thank you for your assistance!
The text was updated successfully, but these errors were encountered:
Since you haven't specified the additional context: Are you using the latest version or at least >= 3.0.0? Because the JSON stuff was only added in version three, see https://github.com/asantibanez/livewire-charts/releases/tag/v3.0.0
Sorry, something went wrong.
As an alternative, try using available methods like setData() or addColumn(), depending on your needs.
No branches or pull requests
Steps to Reproduce:
I was trying to configure the
ColumnChartModel
in my Livewire component.Here is the relevant code snippet:
When I try to execute this code, I receive the error mentioned above.
Additional Context:
Expected Behavior:
I expected the
setJsonConfig()
method to configure the JSON settings for the chart model.Actual Behavior:
The method
setJsonConfig()
does not seem to exist in theColumnChartModel
class.Is there a recommended approach to achieve this functionality, or is this a potential bug in the library?
Thank you for your assistance!
The text was updated successfully, but these errors were encountered: