const.js 415 B

12345678910111213141516171819202122232425
  1. export const NAME = 'name'
  2. export const GROUP = 'group'
  3. export const VALUE = 'value'
  4. export const CONFIG_ERROR = '配置有误,请检查!'
  5. export const BAR_OPTION = {
  6. type: 'bar',
  7. barMaxWidth: '50'
  8. }
  9. export const OPTION = {
  10. xAxis: {
  11. type: 'category'
  12. },
  13. legend: {},
  14. yAxis: {},
  15. tooltip: {}
  16. }
  17. export const PIE_ENCODE = {
  18. itemName: '',
  19. value: ''
  20. }
  21. export const AXIS_ENCODE = {
  22. x: '',
  23. y: ''
  24. }