This repository was archived by the owner on Jan 2, 2019. It is now read-only.
File tree 2 files changed +10
-8
lines changed
2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 97
97
98
98
// Build the dataseries
99
99
$ series = new PHPExcel_Chart_DataSeries (
100
- PHPExcel_Chart_DataSeries::TYPE_RADARCHART , // plotType
101
- NULL , // plotGrouping (Radar charts don't have any grouping)
102
- range (0 , count ($ dataSeriesValues )-1 ), // plotOrder
103
- $ dataSeriesLabels , // plotLabel
104
- $ xAxisTickValues , // plotCategory
105
- $ dataSeriesValues , // plotValues
106
- NULL , // smooth line
107
- PHPExcel_Chart_DataSeries::STYLE_MARKER // plotStyle
100
+ PHPExcel_Chart_DataSeries::TYPE_RADARCHART , // plotType
101
+ NULL , // plotGrouping (Radar charts don't have any grouping)
102
+ range (0 , count ($ dataSeriesValues )-1 ), // plotOrder
103
+ $ dataSeriesLabels , // plotLabel
104
+ $ xAxisTickValues , // plotCategory
105
+ $ dataSeriesValues , // plotValues
106
+ NULL , // plotDirection
107
+ NULL , // smooth line
108
+ PHPExcel_Chart_DataSeries::STYLE_MARKER // plotStyle
108
109
);
109
110
110
111
// Set up a layout object for the Pie chart
Original file line number Diff line number Diff line change 89
89
$ dataSeriesLabels , // plotLabel
90
90
$ xAxisTickValues , // plotCategory
91
91
$ dataSeriesValues , // plotValues
92
+ NULL , // plotDirection
92
93
NULL , // smooth line
93
94
PHPExcel_Chart_DataSeries::STYLE_LINEMARKER // plotStyle
94
95
);
You can’t perform that action at this time.
0 commit comments