A few more invalid displayBlanksAs
This commit is contained in:
parent
d49567aad0
commit
15bd764a08
|
@ -83,7 +83,7 @@ $chart1 = new Chart(
|
||||||
$legend1, // legend
|
$legend1, // legend
|
||||||
$plotArea1, // plotArea
|
$plotArea1, // plotArea
|
||||||
true, // plotVisibleOnly
|
true, // plotVisibleOnly
|
||||||
0, // displayBlanksAs
|
DataSeries::EMPTY_AS_GAP, // displayBlanksAs
|
||||||
null, // xAxisLabel
|
null, // xAxisLabel
|
||||||
$yAxisLabel1 // yAxisLabel
|
$yAxisLabel1 // yAxisLabel
|
||||||
);
|
);
|
||||||
|
|
|
@ -154,7 +154,7 @@ $chart2 = new Chart(
|
||||||
null, // legend
|
null, // legend
|
||||||
$plotArea2, // plotArea
|
$plotArea2, // plotArea
|
||||||
true, // plotVisibleOnly
|
true, // plotVisibleOnly
|
||||||
0, // displayBlanksAs
|
DataSeries::EMPTY_AS_GAP, // displayBlanksAs
|
||||||
null, // xAxisLabel
|
null, // xAxisLabel
|
||||||
null // yAxisLabel - Like Pie charts, Donut charts don't have a Y-Axis
|
null // yAxisLabel - Like Pie charts, Donut charts don't have a Y-Axis
|
||||||
);
|
);
|
||||||
|
|
|
@ -90,7 +90,7 @@ $chart1 = new Chart(
|
||||||
$legend1, // legend
|
$legend1, // legend
|
||||||
$plotArea1, // plotArea
|
$plotArea1, // plotArea
|
||||||
true, // plotVisibleOnly
|
true, // plotVisibleOnly
|
||||||
0, // displayBlanksAs
|
DataSeries::EMPTY_AS_GAP, // displayBlanksAs
|
||||||
null, // xAxisLabel
|
null, // xAxisLabel
|
||||||
null // yAxisLabel - Pie charts don't have a Y-Axis
|
null // yAxisLabel - Pie charts don't have a Y-Axis
|
||||||
);
|
);
|
||||||
|
|
|
@ -83,7 +83,7 @@ $chart = new Chart(
|
||||||
$legend, // legend
|
$legend, // legend
|
||||||
$plotArea, // plotArea
|
$plotArea, // plotArea
|
||||||
true, // plotVisibleOnly
|
true, // plotVisibleOnly
|
||||||
0, // displayBlanksAs
|
DataSeries::EMPTY_AS_GAP, // displayBlanksAs
|
||||||
null, // xAxisLabel
|
null, // xAxisLabel
|
||||||
$yAxisLabel // yAxisLabel
|
$yAxisLabel // yAxisLabel
|
||||||
);
|
);
|
||||||
|
|
|
@ -68,7 +68,7 @@ class Chart
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
private $displayBlanksAs = '0';
|
private $displayBlanksAs = DataSeries::EMPTY_AS_GAP;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Chart Asix Y as.
|
* Chart Asix Y as.
|
||||||
|
@ -148,7 +148,7 @@ class Chart
|
||||||
* @param null|Legend $legend
|
* @param null|Legend $legend
|
||||||
* @param null|PlotArea $plotArea
|
* @param null|PlotArea $plotArea
|
||||||
* @param mixed $plotVisibleOnly
|
* @param mixed $plotVisibleOnly
|
||||||
* @param mixed $displayBlanksAs
|
* @param string $displayBlanksAs
|
||||||
* @param null|Title $xAxisLabel
|
* @param null|Title $xAxisLabel
|
||||||
* @param null|Title $yAxisLabel
|
* @param null|Title $yAxisLabel
|
||||||
* @param null|Axis $xAxis
|
* @param null|Axis $xAxis
|
||||||
|
|
Loading…
Reference in New Issue