@@ 143-149 (lines=7) @@ | ||
140 | $plotAttributes = self::readChartAttributes($chartDetail); |
|
141 | ||
142 | break; |
|
143 | case 'radarChart': |
|
144 | $radarStyle = self::getAttribute($chartDetail->radarStyle, 'val', 'string'); |
|
145 | $plotSer = self::chartDataSeries($chartDetail, $namespacesChartMeta, $chartDetailKey); |
|
146 | $plotSer->setPlotStyle($radarStyle); |
|
147 | $plotSeries[] = $plotSer; |
|
148 | $plotAttributes = self::readChartAttributes($chartDetail); |
|
149 | ||
150 | break; |
|
151 | case 'surfaceChart': |
|
152 | case 'surface3DChart': |
|
@@ 127-133 (lines=7) @@ | ||
124 | $plotAttributes = self::readChartAttributes($chartDetail); |
|
125 | ||
126 | break; |
|
127 | case 'scatterChart': |
|
128 | $scatterStyle = self::getAttribute($chartDetail->scatterStyle, 'val', 'string'); |
|
129 | $plotSer = self::chartDataSeries($chartDetail, $namespacesChartMeta, $chartDetailKey); |
|
130 | $plotSer->setPlotStyle($scatterStyle); |
|
131 | $plotSeries[] = $plotSer; |
|
132 | $plotAttributes = self::readChartAttributes($chartDetail); |
|
133 | ||
134 | break; |
|
135 | case 'bubbleChart': |
|
136 | $bubbleScale = self::getAttribute($chartDetail->bubbleScale, 'val', 'integer'); |