This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
ob_implicit_flush(1); | |
for ($i = 0; $i < 10; $i++;) | |
{ | |
@header("Content-Encoding: none"); | |
echo $i; | |
//this is for the buffer achieve the minimum size in order to flush data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// technical overview bar chart | |
$('#technical-score-overall').highcharts({ | |
chart: { | |
type: 'column' | |
}, | |
credits: false, | |
plotOptions: { | |
column: { | |
pointPadding: -1, | |
borderWidth: 0 |