* Fix waterpolo echart show bug.;

This commit is contained in:
宋辰轩
2024-03-28 15:23:29 +08:00
parent eaee09557a
commit 0cfa2f164d
2 changed files with 6 additions and 1 deletions
+1
View File
@@ -208,6 +208,7 @@ class chartModel extends model
if($type == 'line') return $this->genLineChart($chart->fieldSettings, $settings, $chart->sql, $filterFormat, $chart->langs);
if($type == 'cluBarX' || $type == 'cluBarY') return $this->genCluBar($chart->fieldSettings, $settings, $chart->sql, $filterFormat, '', $chart->langs);
if($type == 'stackedBar' || $type == 'stackedBarY') return $this->genCluBar($chart->fieldSettings, $settings, $chart->sql, $filterFormat, 'total', $chart->langs);
if($type == 'waterpolo') return $this->bi->genWaterpolo($chart->fieldSettings, $settings, $chart->sql, $filterFormat);
return array();
}