diff --git a/http_src/vue/charts/multi-pie-chart.vue b/http_src/vue/charts/multi-pie-chart.vue index f2f9894a3c..7a961f7c57 100644 --- a/http_src/vue/charts/multi-pie-chart.vue +++ b/http_src/vue/charts/multi-pie-chart.vue @@ -3,11 +3,12 @@ --> @@ -22,6 +23,8 @@ const props = defineProps({ charts_per_row: { type: Number, default: null }, }); +const style = "max-height:400px" + const charts = computed(() => { if (props.context?.charts) return props.context.charts; if (props.chart) return [props.chart]; @@ -33,8 +36,7 @@ const gridStyle = computed(() => { return { display: "grid", gridTemplateColumns: `repeat(${perRow}, 1fr)`, - gap: "10px", - width: "100%", + gap: "10px" }; }); \ No newline at end of file diff --git a/http_src/vue/charts/pie-chart.vue b/http_src/vue/charts/pie-chart.vue index b61fdaec31..4a704eba80 100644 --- a/http_src/vue/charts/pie-chart.vue +++ b/http_src/vue/charts/pie-chart.vue @@ -2,7 +2,7 @@ (C) 2026 - ntop.org -->