+
@@ -31,6 +32,7 @@ import pieChart from '@/components/chart/PieChart';
import ChartAction from '@/views/DataAnalyse/diagram/components/ChartAction';
import RenderTableTitle from '@/views/DataAnalyse/components/RenderTableTitle';
import useConstantOption from '@/views/DataAnalyse/diagram/composables/useConstantOption';
+import AiInsightResult from '@/views/DataAnalyse/diagram/components/AiInsightResult';
function clearData(data) {
return data.filter((item) => item.avg !== '0.00');
@@ -49,7 +51,8 @@ export default defineComponent({
},
components: {
RenderTableTitle,
- ChartAction
+ ChartAction,
+ AiInsightResult,
// pieChart,
},
setup(props, { emit }) {
@@ -168,7 +171,8 @@ export default defineComponent({
.container {
height: 100%;
.chart-container {
- height: 300px;
+ min-height: 300px;
+ padding-bottom: 20px;
}
.table-container {
diff --git a/src/views/DataAnalyse/diagram/components/questionTypes/basic/GeographicLocation.vue b/src/views/DataAnalyse/diagram/components/questionTypes/basic/GeographicLocation.vue
index 8f1c1ebf..3e8f23ef 100644
--- a/src/views/DataAnalyse/diagram/components/questionTypes/basic/GeographicLocation.vue
+++ b/src/views/DataAnalyse/diagram/components/questionTypes/basic/GeographicLocation.vue
@@ -1,9 +1,11 @@
+