UNPKG

nuke-biz-qn-chart

Version:

weex 版本千牛业务图表库,基于weex + rax,包含线图、柱状图、饼图、雷达图等,其他类型的图表正在按业务需求陆续接入。其中 native 端由客户端插件实现,h5 端使用 g2-mobile

17 lines (16 loc) 602 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); function parseLegend(legend) { var legendCfg = { orientation: legend.orientation || 'HORIZONTAL', textColor: legend.color || '#333333', textSize: legend.fontSize || 9, horizontalAlignment: legend.horizontalAlignment || 'LEFT', //LEFT, CENTER, RIGHT; 默认 LEFT verticalAlignment: legend.verticalAlignment || 'BOTTOM', //TOP, CENTER, BOTTOM; 默认 BOTTOM direction: legend.direction || 'LEFT_TO_RIGHT' }; return legendCfg; } exports.parseLegend = parseLegend;