![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/resources/views/vendor/charts/fusioncharts/ |
<script type="text/javascript"> var {{ $model->id }}; FusionCharts.ready(function () { {{ $model->id }} = new FusionCharts({ type: 'pie2d', renderAt: "{{ $model->id }}", @include('charts::_partials.dimension.js') dataFormat: 'json', dataSource: { 'chart': { "exportenabled": "1", "exportatclient": "1", @if($model->title) 'caption': "{!! $model->title !!}", @endif 'yAxisName': "{!! $model->element_label !!}", 'paletteColors': '#0075c2', 'bgColor': '#ffffff', 'showBorder': '0', 'use3DLighting': '0', 'showShadow': '0', 'enableSmartLabels': '1', 'startingAngle': '0', 'showPercentValues': '1', 'showPercentInTooltip': '0', 'decimals': '1', 'captionFontSize': '14', 'subcaptionFontSize': '14', 'subcaptionFontBold': '0', 'toolTipColor': '#ffffff', 'toolTipBorderThickness': '0', 'toolTipBgColor': '#000000', 'toolTipBgAlpha': '80', 'toolTipBorderRadius': '2', 'toolTipPadding': '5', 'showHoverEffect':'1', 'showLegend': '1', 'legendBgColor': '#ffffff', 'legendBorderAlpha': '0', 'legendShadow': '0', 'legendItemFontSize': '10', 'legendItemFontColor': '#666666' }, 'data': [ @for($i = 0; $i < count($model->values); $i++) { 'label': "{!! $model->labels[$i] !!}", 'value': {{ $model->values[$i] }}, @if($model->colors) 'color': "{{ $model->colors[$i] }}", @endif }, @endfor ], } }).render() }); </script> @include('charts::_partials.container.div')