LaravelDaily / laravel-charts

Package to draw charts in Laravel with Chart.js
MIT License
531 stars 118 forks source link

labels in the outputted JS can't have single quote " ' " in them. #103

Open robertbrowncc opened 1 year ago

robertbrowncc commented 1 year ago

When you make a chart and the labels have a single quote " ' " in them it gets outputted as '.

Particularly tricky to handle possessive nouns, like "Tom's Toys" or "the service's agreement terms"

I patched the line to this in the javascript.blade to get it to go. However, maybe others have a better solution and time to work on it.

    label: "{!! html_entity_decode($dataset['name'] ?? $options['chart_title']) !!}",