This is an automated email from the ASF dual-hosted git repository.
bbovenzi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 18e725afbe Enable scrolling on legend with high number of elements.
(#41187)
18e725afbe is described below
commit 18e725afbe828d81b44e05be924e7f9080934056
Author: Karthikeyan Singaravelan <[email protected]>
AuthorDate: Thu Aug 1 20:35:53 2024 +0530
Enable scrolling on legend with high number of elements. (#41187)
---
airflow/www/static/js/dag/details/task/AllTaskDuration.tsx | 1 +
1 file changed, 1 insertion(+)
diff --git a/airflow/www/static/js/dag/details/task/AllTaskDuration.tsx
b/airflow/www/static/js/dag/details/task/AllTaskDuration.tsx
index c5babb8018..ebb10a5275 100644
--- a/airflow/www/static/js/dag/details/task/AllTaskDuration.tsx
+++ b/airflow/www/static/js/dag/details/task/AllTaskDuration.tsx
@@ -101,6 +101,7 @@ const AllTaskDuration = ({ showBar }: Props) => {
const option: ReactEChartsProps["option"] = {
legend: {
orient: "horizontal",
+ type: "scroll",
icon: "circle",
data: legendData,
},