Skip to content
Snippets Groups Projects
Commit 3d2d8043 authored by Bruno Massa's avatar Bruno Massa
Browse files

Bugs fixed:

* [#470826] by brmassa and Panthrax
parent 12c2b0c7
No related branches found
No related tags found
No related merge requests found
...@@ -69,8 +69,11 @@ function _fusioncharts_values($type, $data, $options = array()) { ...@@ -69,8 +69,11 @@ function _fusioncharts_values($type, $data, $options = array()) {
* String. The string presentation of series data * String. The string presentation of series data
*/ */
function _fusioncharts_chart(&$chart, &$data) { function _fusioncharts_chart(&$chart, &$data) {
$chart['attributes']['bgColor'] = $data['#color']; $chart['attributes']['bgColor'] = $data['#color']['background'];
$chart['attributes']['caption'] = $data['#title']; if (isset($data['#title'])) {
$chart['attributes']['caption'] = $data['#title'];
}
$chart['attributes']['animation'] = '0';
} }
/** /**
...@@ -86,19 +89,19 @@ function _fusioncharts_charts_render(&$data) { ...@@ -86,19 +89,19 @@ function _fusioncharts_charts_render(&$data) {
// Since its a requirement to build the chart on Google, if the value // Since its a requirement to build the chart on Google, if the value
// was not found, return nothing and stop the execution. // was not found, return nothing and stop the execution.
$options = array( $options = array(
'line2D' => '/swf/MSLine.swf', 'line2D' => 'MSLine.swf',
'hbar2D' => '/swf/MSBar2D.swf', 'hbar2D' => 'MSBar2D.swf',
'hbar3D' => '/swf/MSBar3D.swf', 'hbar3D' => 'MSBar3D.swf',
'vbar2D' => '/swf/MSColumn2D.swf', 'vbar2D' => 'MSColumn2D.swf',
'vbar3D' => '/swf/MSColumn3D.swf', 'vbar3D' => 'MSColumn3D.swf',
'pie2D' => '/swf/Pie2D.swf', 'pie2D' => 'Pie2D.swf',
'pie3D' => '/swf/Pie3D.swf', 'pie3D' => 'Pie3D.swf',
); );
if (empty($options[$data['#type']])) { if (empty($options[$data['#type']])) {
return t('This type is not possible using %chartplugin', return t('This type is not possible using %chartplugin',
array('%chartplugin' => 'FusionCharts')); array('%chartplugin' => 'FusionCharts'));
} }
$file = url(drupal_get_path('module', 'fusioncharts') . $options[$data['#type']]); $file = file_create_url('fusioncharts') .'/'. $options[$data['#type']];
// Convert the chat SIZE into the FusionCharts way. // Convert the chat SIZE into the FusionCharts way.
// Since its a requirement to build the chart on Google, if the value // Since its a requirement to build the chart on Google, if the value
...@@ -130,11 +133,12 @@ function _fusioncharts_charts_render(&$data) { ...@@ -130,11 +133,12 @@ function _fusioncharts_charts_render(&$data) {
// Its the HTML tag to include the chart // Its the HTML tag to include the chart
return <<<FUSIONCHARTS return <<<FUSIONCHARTS
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="$width" height="$height">
<param name="allowScriptAccess" value="always" /> <param name="allowScriptAccess" value="always" />
<param name="FlashVars" value="$chart" /> <param name="movie" value="$file" />
<param name="FlashVars" value="&chartWidth=$width&chartHeight=$height$chart" />
<param name="quality" value="high" /> <param name="quality" value="high" />
<embed src="$file" flashVars="$chart" width="$width" height="$height" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> <embed src="$file" flashVars="&chartWidth=$width&chartHeight=$height$chart" width="$width" height="$height" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object> </object>
FUSIONCHARTS; FUSIONCHARTS;
} }
...@@ -154,21 +158,20 @@ function _fusioncharts_series(&$chart, &$data) { ...@@ -154,21 +158,20 @@ function _fusioncharts_series(&$chart, &$data) {
// Since its a requirement to build the chart on FusionCharts, if the value // Since its a requirement to build the chart on FusionCharts, if the value
// was not found, return nothing and stop the execution. // was not found, return nothing and stop the execution.
foreach (element_children($data) as $series) { foreach (element_children($data) as $series) {
$series_data = array();
foreach (element_children($data[$series]) as $values) { foreach (element_children($data[$series]) as $values) {
if (is_array($data[$series][$values])) { $serie_data = array(
$series_data[] = array( 'value' => $data[$series][$values]['#value']
'value' => $data[$series][$values]['#value'], );
'label' => $data[$series][$values]['#label'], if (isset($data[$series][$values]['#label'])) {
); $serie_data['label'] = $data[$series][$values]['#label'];
}
else {
$series_data[] = array(
'value' => $data[$series][$values],
);
} }
$series_data[] = $serie_data;
} }
$options['color'] = trim($data['#color_palette'][$series]); if (isset($data['#color'][$series])) {
$options['color'] = substr($data['#color'][$series], 1);
}
$chart['value'][] = _fusioncharts_values('set', $series_data, $options); $chart['value'][] = _fusioncharts_values('set', $series_data, $options);
...@@ -182,14 +185,16 @@ function _fusioncharts_series(&$chart, &$data) { ...@@ -182,14 +185,16 @@ function _fusioncharts_series(&$chart, &$data) {
foreach (array_keys($series_data) as $value) { foreach (array_keys($series_data) as $value) {
if (empty($data[$series][$value]['#label'])) { if (empty($data[$series][$value]['#label'])) {
$value_labels[] = ''; $value_labels[] = '';
$toogle = TRUE;
} }
else { else {
$value_labels[] = $data[$series][$value]['#label']; $value_labels[] = $data[$series][$value]['#label'];
$toogle = TRUE; $toogle = TRUE;
} }
} }
if (!empty($toogle)) { if (!empty($toogle) and empty($chart['categories'])) {
$chart['value'][] = _fusioncharts_values('category', $value_labels); $chart['value'][] = _fusioncharts_values('category', $value_labels);
$chart['categories'] = TRUE;
} }
} }
} }
...@@ -221,7 +226,7 @@ function _fusioncharts_series_single(&$chart, &$data) { ...@@ -221,7 +226,7 @@ function _fusioncharts_series_single(&$chart, &$data) {
$series_data[] = array( $series_data[] = array(
'value' => $data[$series][$values]['#value'], 'value' => $data[$series][$values]['#value'],
'label' => $data[$series][$values]['#label'], 'label' => $data[$series][$values]['#label'],
'color' => trim($data['#color_palette'][$series]) 'color' => trim($data['#color'][$values])
); );
} }
else { else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment