39e9143216af9f3c5c03941c8143fc9cdff888a3.svn-base 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. define({
  2. // 全图默认背景
  3. // backgroundColor: 'rgba(0,0,0,0)',
  4. // 默认色板
  5. color: ['#8aedd5','#93bc9e','#cef1db','#7fe579','#a6d7c2',
  6. '#bef0bb','#99e2vb','#94f8a8','#7de5b8','#4dfb70'],
  7. // 值域
  8. dataRange: {
  9. color:['#93bc92','#bef0bb']
  10. },
  11. // K线图默认参数
  12. k: {
  13. // barWidth : null // 默认自适应
  14. // barMaxWidth : null // 默认自适应
  15. itemStyle: {
  16. normal: {
  17. color: '#8aedd5', // 阳线填充颜色
  18. color0: '#7fe579', // 阴线填充颜色
  19. lineStyle: {
  20. width: 1,
  21. color: '#8aedd5', // 阳线边框颜色
  22. color0: '#7fe579' // 阴线边框颜色
  23. }
  24. },
  25. emphasis: {
  26. // color: 各异,
  27. // color0: 各异
  28. }
  29. }
  30. },
  31. // 饼图默认参数
  32. pie: {
  33. itemStyle: {
  34. normal: {
  35. // color: 各异,
  36. borderColor: '#fff',
  37. borderWidth: 1,
  38. label: {
  39. show: true,
  40. position: 'outer',
  41. textStyle: {color: '#1b1b1b'},
  42. lineStyle: {color: '#1b1b1b'}
  43. // textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
  44. },
  45. labelLine: {
  46. show: true,
  47. length: 20,
  48. lineStyle: {
  49. // color: 各异,
  50. width: 1,
  51. type: 'solid'
  52. }
  53. }
  54. }
  55. }
  56. },
  57. map: {
  58. mapType: 'china', // 各省的mapType暂时都用中文
  59. mapLocation: {
  60. x : 'center',
  61. y : 'center'
  62. // width // 自适应
  63. // height // 自适应
  64. },
  65. showLegendSymbol : true, // 显示图例颜色标识(系列标识的小圆点),存在legend时生效
  66. itemStyle: {
  67. normal: {
  68. // color: 各异,
  69. borderColor: '#fff',
  70. borderWidth: 1,
  71. areaStyle: {
  72. color: '#ccc'//rgba(135,206,250,0.8)
  73. },
  74. label: {
  75. show: false,
  76. textStyle: {
  77. color: 'rgba(139,69,19,1)'
  78. }
  79. }
  80. },
  81. emphasis: { // 也是选中样式
  82. // color: 各异,
  83. borderColor: 'rgba(0,0,0,0)',
  84. borderWidth: 1,
  85. areaStyle: {
  86. color: '#f3f39d'
  87. },
  88. label: {
  89. show: false,
  90. textStyle: {
  91. color: 'rgba(139,69,19,1)'
  92. }
  93. }
  94. }
  95. }
  96. },
  97. force : {
  98. itemStyle: {
  99. normal: {
  100. // color: 各异,
  101. label: {
  102. show: false
  103. // textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
  104. },
  105. nodeStyle : {
  106. brushType : 'both',
  107. strokeColor : '#49b485'
  108. },
  109. linkStyle : {
  110. strokeColor : '#49b485'
  111. }
  112. },
  113. emphasis: {
  114. // color: 各异,
  115. label: {
  116. show: false
  117. // textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
  118. },
  119. nodeStyle : {},
  120. linkStyle : {}
  121. }
  122. }
  123. },
  124. gauge : {
  125. axisLine: { // 坐标轴线
  126. show: true, // 默认显示,属性show控制显示与否
  127. lineStyle: { // 属性lineStyle控制线条样式
  128. color: [[0.2, '#93bc9e'],[0.8, '#8aedd5'],[1, '#a6d7c2']],
  129. width: 8
  130. }
  131. },
  132. axisTick: { // 坐标轴小标记
  133. splitNumber: 10, // 每份split细分多少段
  134. length :12, // 属性length控制线长
  135. lineStyle: { // 属性lineStyle控制线条样式
  136. color: 'auto'
  137. }
  138. },
  139. axisLabel: { // 坐标轴文本标签,详见axis.axisLabel
  140. textStyle: { // 其余属性默认使用全局文本样式,详见TEXTSTYLE
  141. color: 'auto'
  142. }
  143. },
  144. splitLine: { // 分隔线
  145. length : 18, // 属性length控制线长
  146. lineStyle: { // 属性lineStyle(详见lineStyle)控制线条样式
  147. color: 'auto'
  148. }
  149. },
  150. pointer : {
  151. length : '90%',
  152. color : 'auto'
  153. },
  154. title : {
  155. textStyle: { // 其余属性默认使用全局文本样式,详见TEXTSTYLE
  156. color: '#333'
  157. }
  158. },
  159. detail : {
  160. textStyle: { // 其余属性默认使用全局文本样式,详见TEXTSTYLE
  161. color: 'auto'
  162. }
  163. }
  164. }
  165. });