ObHighchartsBundle
ObHighchartsBundle copied to clipboard
Symfony Bundle that aims to ease the use of highcharts to display rich graph and charts in your Symfony application
This package is not compatible with PHP 8.x ``` - Root composer.json requires ob/highcharts-bundle ^1.7 -> satisfiable by ob/highcharts-bundle[1.7]. - ob/highcharts-bundle 1.7 requires php ^7.2 -> your php version (8.1.2)...
Added PHP 8 support, and cleaned up the code a bit, and fixed a potential bug in AbstractChart->renderEngine()
I have a project that use this bundle with symfony version 5.4. When I run PHP unit tests. A warning is output: ` 1x: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as...
Hi, i made some modifications to be able to work with this bundle in Symfony 5.3 and Php 8. Also i updated the documentation in https://gist.github.com/mpclarkson/d5dbd5f4096069a43ef1 explaining how integrate the...
When update dependencies, the following messages are show: > Package **zendframework/zend-json** is abandoned, you should avoid using it. Use **laminas/laminas-json** instead. > Package **zendframework/zend-code** is abandoned, you should avoid using...
Hello, i have a problem, i need to change a width and height chart when i export this. Can you help me how to do this please? Thanks
In a Symfony 4.2 application using webpack, attempts to include highcharts resulted in a javascript error `Highcharts not defined` where the page source reads `var linechart = new Highcharts.Chart({`. My...
## Bug There is no support for [getTimezoneOffset](http://api.highcharts.com/highstock/global.getTimezoneOffset) ## Debug The following won't return the js function. ````php // Easy case with simple function $func = new Expr('function () {...
My test example is as follows. Twig: ``` {% block body %} Charts {% endblock %} {% block stylesheets %}{% endblock %} {% block javascripts %} myLib.chartLoad(function(data){ {{ chart(chart, false)...