0a43173ecf56a26853e144dbe44dd82ace50ba21.svn-base 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. define({
  2. // 全图默认背景
  3. // backgroundColor: 'rgba(0,0,0,0)',
  4. // 默认色板
  5. color: ['#e52c3c','#f7b1ab','#fa506c','#f59288','#f8c4d8',
  6. '#e54f5c','#f06d5c','#e54f80','#f29c9f','#eeb5b7'],
  7. // 值域
  8. dataRange: {
  9. color:['#e52c3c','#f7b1ab']//颜色
  10. },
  11. // K线图默认参数
  12. k: {
  13. // barWidth : null // 默认自适应
  14. // barMaxWidth : null // 默认自适应
  15. itemStyle: {
  16. normal: {
  17. color: '#e52c3c', // 阳线填充颜色
  18. color0: '#f59288', // 阴线填充颜色
  19. lineStyle: {
  20. width: 1,
  21. color: '#e52c3c', // 阳线边框颜色
  22. color0: '#f59288' // 阴线边框颜色
  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: 'black'}
  42. // textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
  43. },
  44. labelLine: {
  45. show: true,
  46. length: 20,
  47. lineStyle: {
  48. // color: 各异,
  49. width: 1,
  50. type: 'solid'
  51. }
  52. }
  53. }
  54. }
  55. },
  56. map: {
  57. mapType: 'china', // 各省的mapType暂时都用中文
  58. mapLocation: {
  59. x : 'center',
  60. y : 'center'
  61. // width // 自适应
  62. // height // 自适应
  63. },
  64. showLegendSymbol : true, // 显示图例颜色标识(系列标识的小圆点),存在legend时生效
  65. itemStyle: {
  66. normal: {
  67. // color: 各异,
  68. borderColor: '#fff',
  69. borderWidth: 1,
  70. areaStyle: {
  71. color: '#ccc'//rgba(135,206,250,0.8)
  72. },
  73. label: {
  74. show: false,
  75. textStyle: {
  76. color: 'rgba(139,69,19,1)'
  77. }
  78. }
  79. },
  80. emphasis: { // 也是选中样式
  81. // color: 各异,
  82. borderColor: 'rgba(0,0,0,0)',
  83. borderWidth: 1,
  84. areaStyle: {
  85. color: '#f3f39d'
  86. },
  87. label: {
  88. show: false,
  89. textStyle: {
  90. color: 'rgba(139,69,19,1)'
  91. }
  92. }
  93. }
  94. }
  95. },
  96. force : {
  97. // 分类里如果有样式会覆盖节点默认样式
  98. itemStyle: {
  99. normal: {
  100. // color: 各异,
  101. label: {
  102. show: false
  103. // textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
  104. },
  105. nodeStyle : {
  106. brushType : 'both',
  107. strokeColor : '#e54f5c'
  108. },
  109. linkStyle : {
  110. strokeColor : '#e54f5c'
  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, '#e52c3c'],[0.8, '#f7b1ab'],[1, '#fa506c']],
  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. });