amcharts5 XY차트(XYChart, 막대차트) 범례 설정 및 색상지정
IT&프로그래밍
2021. 12. 17. 10:15
class MyTheme extends am5.Theme { setupDefaultRules() { this.rule("ColorSet").set("colors", [ am5.color(0x1e73be), /* 블루 */ am5.color(0xe05151), /* 레드 */ am5.color(0xa8a8a8) /* 그레이 */ ]); } } let root = am5.Root.new("chartdiv2_"+index); root.setThemes([ am5themes_Animated.new(root), MyTheme.new(root) ]); let chart = root.container.children.push( am5xy.XYChart.new(root, { panY: false, wheelY: "zo..