[Superset] X Axis Format 추가하기.
Week 표시를 위해 추가 d3-time-format 참고https://github.com/d3/d3-time-format assets/javascripts/explore/stores/controls.jsx export const D3_TIME_FORMAT_OPTIONS = [ ['smart_date', 'Adaptative formating'], ['%d/%m/%Y', '%d/%m/%Y | 14/01/2019'], ['%m/%d/%Y', '%m/%d/%Y | 01/14/2019'], ['%Y-%m-%d', '%Y-%m-%d | 2019-01-14'], ['%Y-%m-%d %H:%M:%S', '%Y-%m-%d %H:%M:%S | 2019-01-14 01:32:10'], ['%d-%m-%Y %H:%M:%S..
더보기
[Superset] Color Scheme 추가하기
계속해서 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/compon..
더보기