machbase-neoTQLCHART()RadarCustom RadarCustom Radar 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 FAKE( json({ [100, 8, 0.4, -80, 2000], [ 60, 5, 0.3, -100, 1500] })) CHART( chartOption({ color: ["#67F9D8", "#FFE434", "#56A3F1", "#FF917C"], title: { text: "Customized Radar Chart" }, legend: {}, radar: [ { indicator: [ { text: "Indicator1" }, { text: "Indicator2" }, { text: "Indicator3" }, { text: "Indicator4" }, { text: "Indicator5" } ], center: ["50%", "50%"], radius: 200, startAngle: 90, splitNumber: 4, shape: "circle", axisName: { formatter: "【{value}】", color: "#428BD4" }, splitArea: { areaStyle: { color: ["#77EADF", "#26C3BE", "#64AFE9", "#428BD4"], shadowColor: "rgba(0, 0, 0, 0.2)", shadowBlur: 10 } }, axisLine: { lineStyle: { color: "rgba(211, 253, 250, 0.8)" } }, splitLine: { lineStyle: { color: "rgba(211, 253, 250, 0.8)" } } }, ], series: [ { type: "radar", emphasis: { lineStyle: { width: 4 } }, data: [ { value: [100, 8, 0.4, -80, 2000], name: "Data A" }, { value: [60, 5, 0.3, -100, 1500], name: "Data B", areaStyle: { color: "rgba(255, 228, 52, 0.6)" } } ] } ] }) )Last updated on Jun 12, 2025Basic Radar