From 4e65f5254a4e74dbbe691e5edba2775d6d66c0b0 Mon Sep 17 00:00:00 2001
From: mac <user@users-MacBook-Pro.local>
Date: 星期二, 30 四月 2024 14:41:39 +0800
Subject: [PATCH] 2024年04月30日14:41:34

---
 app/src/main/java/com/hdl/photovoltaic/ui/home/BasicChartComposer.java |   43 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 43 insertions(+), 0 deletions(-)

diff --git a/app/src/main/java/com/hdl/photovoltaic/ui/home/BasicChartComposer.java b/app/src/main/java/com/hdl/photovoltaic/ui/home/BasicChartComposer.java
index 8e0a8e1..54fbb8a 100644
--- a/app/src/main/java/com/hdl/photovoltaic/ui/home/BasicChartComposer.java
+++ b/app/src/main/java/com/hdl/photovoltaic/ui/home/BasicChartComposer.java
@@ -51,11 +51,54 @@
 //                .data(new Object[]{3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8});
 
         return configureBasicOptions()
+                .backgroundColor("#EDEFF2")
+                .legendEnabled(false)
+                .markerRadius(0)
+//                .markerSymbol(AAChartSymbolType.Circle)
+//                .markerSymbolStyle(AAChartSymbolStyleType.Normal)
                 .chartType(AAChartType.Area)
                 .categories(new String[]{"涓�鏈�", "浜屾湀", "涓夋湀", "鍥涙湀", "浜旀湀", "鍏湀", "涓冩湀", "鍏湀", "涔濇湀", "鍗佹湀", "鍗佷竴鏈�", "鍗佷簩鏈�"})
                 .series(new AASeriesElement[]{element1});
     }
 
+    public static AAChartModel configureAreaChart(String tipSuspendName, String[] categories, Object[] data) {
+        Map<String, Object> linearGradientColor = AAGradientColor.linearGradient(
+                AALinearGradientDirection.ToBottom,
+                "rgba(56,196,148,0.5)",//娣辩矇鑹�, alpha 閫忔槑搴�1
+                "rgba(255,255,255,0)"//鐑儏鐨勭矇绾�, alpha 閫忔槑搴� 0.1
+        );//棰滆壊瀛楃涓茶缃敮鎸佸崄鍏繘鍒剁被鍨嬪拰 rgba 绫诲瀷
+        AASeriesElement element1 = new AASeriesElement()
+                .name(tipSuspendName)
+//                .colorByPoint(true)
+                .color(AARgba(56, 196, 148, 1.0f))//鐚╃孩鑹�, alpha 閫忔槑搴� 1
+                .lineWidth(1.5)
+//                .borderColor(AARgba(255,255,255,1.0f))
+                .fillColor(linearGradientColor)
+//                .fillOpacity(0.5)//鍖哄煙鑳屾櫙閫忔槑搴︼紝璁剧疆0鐨勮瘽鐪嬩笉鍒板尯鍩熻儗鏅�
+                .data(data);
+//        AASeriesElement element2 = new AASeriesElement()
+//                .name("NewYork")
+//                .data(new Object[]{0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5});
+//        AASeriesElement element3 = new AASeriesElement()
+//                .name("London")
+//                .data(new Object[]{0.9, 0.6, 3.5, 8.4, 13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0});
+//        AASeriesElement element4 = new AASeriesElement()
+//                .name("Berlin")
+//                .data(new Object[]{3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8});
+
+        return configureBasicOptions()
+                .backgroundColor("#EDEFF2")
+                .legendEnabled(false)
+                .markerRadius(0)
+//                .markerSymbol(AAChartSymbolType.Circle)
+//                .markerSymbolStyle(AAChartSymbolStyleType.Normal)
+                .chartType(AAChartType.Area)
+                .categories(categories)
+//                .yAxisMax(500)
+                .yAxisMin(0)
+                .series(new AASeriesElement[]{element1});
+    }
+
     public static AAChartModel configureStepAreaChartAndStepLineChart() {
         AASeriesElement element1 = new AASeriesElement()
                 .name("Tokyo")

--
Gitblit v1.8.0