엉터리 개발 이야기/Superset
[Superset] Color Scheme 추가하기
억삼이
2018. 3. 29. 23:33
반응형
계속해서 UI 및 기능이 업데이트 되고 있네요...
Style > Chart Options > Color Scheme 추가하기
assets/javascripts/modules/colors.js 파일에
export const ALL_COLOR_SCHEMES = {
bnbColors,
d3Category10,
d3Category20,
d3Category20b,
d3Category20c,
googleCategory10c,
googleCategory20c, myColors };
이 부분에 추가하면 된다.
const myColors= [
'#3366cc',
'#dc3912',
'#ff9900',
'#109618']
Color Schema Control 위치는
assets/javascripts/explore/components/controls/ColorSchemeControl.jsx
반응형