Improve Kendo Chart height when there are a lot of elements

When there are a lot of Kendo Chart entries, they become unreadable
.k-chart {
overflow: auto; // need to trigger overflow bar
height: calc(90vh - 280px); // chart is shown in a 90vh tall dialog, the 280px is the space above (aka: make the chart as tall as it can be without triggering overflow in the main dialog)
}

.k-chart-surface {
min-height: 600px; // makes the overflow appear
height: 100%;
}
.k-chart {
overflow: auto; // need to trigger overflow bar
height: calc(90vh - 280px); // chart is shown in a 90vh tall dialog, the 280px is the space above (aka: make the chart as tall as it can be without triggering overflow in the main dialog)
}

.k-chart-surface {
min-height: 600px; // makes the overflow appear
height: 100%;
}
No description
3 Replies
MC23
MC23OP3mo ago
Pic of how it looks now
No description
ἔρως
ἔρως3mo ago
why are you even showing so many 0? can't you do an "others" and just slap a 0? and obviously, point to a page that explains all of them
MC23
MC23OP3mo ago
There's a part that allows to assing already assigned stuff to those, and the chart will update regularly. I found a way via querySelector and marking this as solved

Did you find this page helpful?