|
|
@@ -3,12 +3,13 @@
|
|
|
* @version:
|
|
|
* @Author: whw
|
|
|
* @Date: 2021-11-3
|
|
|
- * @LastEditors: whw
|
|
|
- * @LastEditTime: 2021-11-3
|
|
|
+ * @LastEditors: qianlishi qianlishi@anji-plus.com
|
|
|
+ * @LastEditTime: 2022-11-07 15:40:35
|
|
|
*/
|
|
|
export const widgetHeatmap = {
|
|
|
code: 'widget-heatmap',
|
|
|
- type: 'chart',
|
|
|
+ type: 'heatmap',
|
|
|
+ tabName: '热力图',
|
|
|
label: '热力图',
|
|
|
icon: 'iconrelitu',
|
|
|
options: {
|
|
|
@@ -36,19 +37,19 @@ export const widgetHeatmap = {
|
|
|
list: [
|
|
|
{
|
|
|
type: 'el-switch',
|
|
|
- label: '标题',
|
|
|
+ label: '标题显示',
|
|
|
name: 'isNoTitle',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
- value: true
|
|
|
+ value: true,
|
|
|
},
|
|
|
{
|
|
|
type: 'el-input-text',
|
|
|
- label: '标题',
|
|
|
+ label: '标题名',
|
|
|
name: 'titleText',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
- value: ''
|
|
|
+ value: '',
|
|
|
},
|
|
|
{
|
|
|
type: 'vue-color',
|
|
|
@@ -56,7 +57,15 @@ export const widgetHeatmap = {
|
|
|
name: 'textColor',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
- value: '#fff'
|
|
|
+ value: '#FFD700'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: 'el-input-number',
|
|
|
+ label: '字体字号',
|
|
|
+ name: 'textFontSize',
|
|
|
+ required: false,
|
|
|
+ placeholder: '',
|
|
|
+ value: 20
|
|
|
},
|
|
|
{
|
|
|
type: 'el-select',
|
|
|
@@ -65,20 +74,25 @@ export const widgetHeatmap = {
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
selectOptions: [
|
|
|
- {code: 'normal', name: '正常'},
|
|
|
- {code: 'bold', name: '粗体'},
|
|
|
- {code: 'bolder', name: '特粗体'},
|
|
|
- {code: 'lighter', name: '细体'}
|
|
|
+ { code: 'normal', name: '正常' },
|
|
|
+ { code: 'bold', name: '粗体' },
|
|
|
+ { code: 'bolder', name: '特粗体' },
|
|
|
+ { code: 'lighter', name: '细体' }
|
|
|
],
|
|
|
value: 'normal'
|
|
|
},
|
|
|
{
|
|
|
- type: 'el-input-number',
|
|
|
- label: '字体大小',
|
|
|
- name: 'textFontSize',
|
|
|
+ type: 'el-select',
|
|
|
+ label: '字体风格',
|
|
|
+ name: 'textFontStyle',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
- value: 16
|
|
|
+ selectOptions: [
|
|
|
+ { code: 'normal', name: '正常' },
|
|
|
+ { code: 'italic', name: 'italic斜体' },
|
|
|
+ { code: 'oblique', name: 'oblique斜体' },
|
|
|
+ ],
|
|
|
+ value: 'normal'
|
|
|
},
|
|
|
{
|
|
|
type: 'el-select',
|
|
|
@@ -87,15 +101,15 @@ export const widgetHeatmap = {
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
selectOptions: [
|
|
|
- {code: 'center', name: '居中'},
|
|
|
- {code: 'left', name: '左对齐'},
|
|
|
- {code: 'right', name: '右对齐'},
|
|
|
+ { code: 'center', name: '居中' },
|
|
|
+ { code: 'left', name: '左对齐' },
|
|
|
+ { code: 'right', name: '右对齐' },
|
|
|
],
|
|
|
value: 'center'
|
|
|
},
|
|
|
{
|
|
|
type: 'el-input-text',
|
|
|
- label: '副标题',
|
|
|
+ label: '副标题名',
|
|
|
name: 'subText',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
@@ -107,7 +121,15 @@ export const widgetHeatmap = {
|
|
|
name: 'subTextColor',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
- value: ''
|
|
|
+ value: 'rgba(30, 144, 255, 1)'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: 'el-input-number',
|
|
|
+ label: '字体字号',
|
|
|
+ name: 'subTextFontSize',
|
|
|
+ required: false,
|
|
|
+ placeholder: '',
|
|
|
+ value: 20
|
|
|
},
|
|
|
{
|
|
|
type: 'el-select',
|
|
|
@@ -116,20 +138,25 @@ export const widgetHeatmap = {
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
selectOptions: [
|
|
|
- {code: 'normal', name: '正常'},
|
|
|
- {code: 'bold', name: '粗体'},
|
|
|
- {code: 'bolder', name: '特粗体'},
|
|
|
- {code: 'lighter', name: '细体'}
|
|
|
+ { code: 'normal', name: '正常' },
|
|
|
+ { code: 'bold', name: '粗体' },
|
|
|
+ { code: 'bolder', name: '特粗体' },
|
|
|
+ { code: 'lighter', name: '细体' }
|
|
|
],
|
|
|
value: 'normal'
|
|
|
},
|
|
|
{
|
|
|
- type: 'el-input-number',
|
|
|
- label: '字体大小',
|
|
|
- name: 'subTextFontSize',
|
|
|
+ type: 'el-select',
|
|
|
+ label: '字体风格',
|
|
|
+ name: 'subTextFontStyle',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
- value: 16
|
|
|
+ selectOptions: [
|
|
|
+ { code: 'normal', name: '正常' },
|
|
|
+ { code: 'italic', name: 'italic斜体' },
|
|
|
+ { code: 'oblique', name: 'oblique斜体' },
|
|
|
+ ],
|
|
|
+ value: 'normal'
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
@@ -146,76 +173,84 @@ export const widgetHeatmap = {
|
|
|
},
|
|
|
{
|
|
|
type: 'el-input-text',
|
|
|
- label: 'X轴别名',
|
|
|
- name: 'xName',
|
|
|
+ label: '坐标名',
|
|
|
+ name: 'nameX',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
value: ''
|
|
|
},
|
|
|
{
|
|
|
type: 'vue-color',
|
|
|
- label: '别名颜色',
|
|
|
- name: 'xNameColor',
|
|
|
+ label: '坐标名颜色',
|
|
|
+ name: 'nameColorX',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
value: '#fff'
|
|
|
},
|
|
|
{
|
|
|
type: 'el-input-number',
|
|
|
- label: '别名字号',
|
|
|
- name: 'xNameFontSize',
|
|
|
+ label: '坐标名字号',
|
|
|
+ name: 'nameFontSizeX',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
value: 14
|
|
|
},
|
|
|
{
|
|
|
- type: 'el-switch',
|
|
|
- label: '轴反转',
|
|
|
- name: 'reversalX',
|
|
|
+ type: 'vue-color',
|
|
|
+ label: '数值颜色',
|
|
|
+ name: 'colorX',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
- value: false
|
|
|
+ value: '#fff',
|
|
|
},
|
|
|
{
|
|
|
- type: 'el-slider',
|
|
|
- label: '文字角度',
|
|
|
- name: 'textAngleX',
|
|
|
+ type: 'el-input-number',
|
|
|
+ label: '数值字号',
|
|
|
+ name: 'fontSizeX',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
- value: 0
|
|
|
+ value: 14,
|
|
|
},
|
|
|
{
|
|
|
type: 'el-input-number',
|
|
|
- label: '文字间隔',
|
|
|
+ label: '数值间隔',
|
|
|
name: 'textInterval',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
value: ''
|
|
|
},
|
|
|
{
|
|
|
- type: 'vue-color',
|
|
|
- label: '文字颜色',
|
|
|
- name: 'Xcolor',
|
|
|
+ type: 'el-slider',
|
|
|
+ label: '数值角度',
|
|
|
+ name: 'textAngleX',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
- value: '#fff',
|
|
|
+ value: 0
|
|
|
},
|
|
|
{
|
|
|
- type: 'el-input-number',
|
|
|
- label: '文字字号',
|
|
|
- name: 'fontSizeX',
|
|
|
+ type: 'el-switch',
|
|
|
+ label: '坐标轴反转',
|
|
|
+ name: 'reversalX',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
- value: 14,
|
|
|
+ value: false
|
|
|
},
|
|
|
{
|
|
|
type: 'vue-color',
|
|
|
- label: '轴颜色',
|
|
|
+ label: '坐标轴颜色',
|
|
|
name: 'lineColorX',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
value: '#fff',
|
|
|
},
|
|
|
+ {
|
|
|
+ type: 'el-input-number',
|
|
|
+ label: '坐标轴宽度',
|
|
|
+ name: 'lineWidthX',
|
|
|
+ required: false,
|
|
|
+ placeholder: '',
|
|
|
+ value: 1,
|
|
|
+ },
|
|
|
],
|
|
|
},
|
|
|
{
|
|
|
@@ -231,7 +266,7 @@ export const widgetHeatmap = {
|
|
|
},
|
|
|
{
|
|
|
type: 'el-input-text',
|
|
|
- label: 'Y轴别名',
|
|
|
+ label: '坐标名',
|
|
|
name: 'textNameY',
|
|
|
require: false,
|
|
|
placeholder: '',
|
|
|
@@ -239,59 +274,83 @@ export const widgetHeatmap = {
|
|
|
},
|
|
|
{
|
|
|
type: 'vue-color',
|
|
|
- label: '别名颜色',
|
|
|
- name: 'NameColorY',
|
|
|
+ label: '坐标名颜色',
|
|
|
+ name: 'nameColorY',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
value: '#fff',
|
|
|
},
|
|
|
{
|
|
|
type: 'el-input-number',
|
|
|
- label: '别名字号',
|
|
|
- name: 'NameFontSizeY',
|
|
|
+ label: '坐标名字号',
|
|
|
+ name: 'nameFontSizeY',
|
|
|
+ required: false,
|
|
|
+ placeholder: '',
|
|
|
+ value: 14,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: 'vue-color',
|
|
|
+ label: '数值颜色',
|
|
|
+ name: 'colorY',
|
|
|
+ required: false,
|
|
|
+ placeholder: '',
|
|
|
+ value: '#fff',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: 'el-input-number',
|
|
|
+ label: '数值字号',
|
|
|
+ name: 'fontSizeY',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
value: 14,
|
|
|
},
|
|
|
{
|
|
|
type: 'el-switch',
|
|
|
- label: '轴反转',
|
|
|
- name: 'reversalY',
|
|
|
+ label: '缩放',
|
|
|
+ name: 'scale',
|
|
|
+ require: false,
|
|
|
+ placeholder: '',
|
|
|
+ value: false,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: 'el-input-number',
|
|
|
+ label: '均分',
|
|
|
+ name: 'splitNumberY',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
- value: false
|
|
|
+ value: ''
|
|
|
},
|
|
|
{
|
|
|
type: 'el-slider',
|
|
|
- label: '文字角度',
|
|
|
+ label: '数值角度',
|
|
|
name: 'textAngleY',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
value: 0
|
|
|
},
|
|
|
{
|
|
|
- type: 'vue-color',
|
|
|
- label: '文字颜色',
|
|
|
- name: 'colorY',
|
|
|
+ type: 'el-switch',
|
|
|
+ label: '坐标轴反转',
|
|
|
+ name: 'reversalY',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
- value: '#fff',
|
|
|
+ value: false
|
|
|
},
|
|
|
{
|
|
|
- type: 'el-input-number',
|
|
|
- label: '文字字号',
|
|
|
- name: 'fontSizeY',
|
|
|
+ type: 'vue-color',
|
|
|
+ label: '坐标轴颜色',
|
|
|
+ name: 'lineColorY',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
- value: 14,
|
|
|
+ value: '#fff',
|
|
|
},
|
|
|
{
|
|
|
- type: 'vue-color',
|
|
|
- label: '轴颜色',
|
|
|
- name: 'lineColorY',
|
|
|
+ type: 'el-input-number',
|
|
|
+ label: '坐标轴宽度',
|
|
|
+ name: 'lineWidthY',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
- value: '#fff',
|
|
|
+ value: 1,
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
@@ -329,10 +388,10 @@ export const widgetHeatmap = {
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
selectOptions: [
|
|
|
- {code: 'normal', name: '正常'},
|
|
|
- {code: 'bold', name: '粗体'},
|
|
|
- {code: 'bolder', name: '特粗体'},
|
|
|
- {code: 'lighter', name: '细体'}
|
|
|
+ { code: 'normal', name: '正常' },
|
|
|
+ { code: 'bold', name: '粗体' },
|
|
|
+ { code: 'bolder', name: '特粗体' },
|
|
|
+ { code: 'lighter', name: '细体' }
|
|
|
],
|
|
|
value: 'normal'
|
|
|
},
|
|
|
@@ -352,9 +411,10 @@ export const widgetHeatmap = {
|
|
|
{
|
|
|
type: 'vue-color',
|
|
|
label: '字体颜色',
|
|
|
- name: 'tipsLineColor',
|
|
|
+ name: 'tipsColor',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
+ value: '#00FEFF'
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
@@ -422,7 +482,7 @@ export const widgetHeatmap = {
|
|
|
{
|
|
|
type: 'vue-color',
|
|
|
label: '数值颜色',
|
|
|
- name: 'lengedColor',
|
|
|
+ name: 'legendColor',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
value: '#fff',
|
|
|
@@ -430,7 +490,7 @@ export const widgetHeatmap = {
|
|
|
{
|
|
|
type: 'el-input-number',
|
|
|
label: '图例大小',
|
|
|
- name: 'lengedFontSize',
|
|
|
+ name: 'legendFontSize',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
value: 12,
|
|
|
@@ -438,7 +498,7 @@ export const widgetHeatmap = {
|
|
|
{
|
|
|
type: 'el-input-number',
|
|
|
label: '图例宽度',
|
|
|
- name: 'lengedWidth',
|
|
|
+ name: 'legendWidth',
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
value: 12,
|
|
|
@@ -450,9 +510,9 @@ export const widgetHeatmap = {
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
selectOptions: [
|
|
|
- {code: 'center', name: '居中'},
|
|
|
- {code: 'left', name: '左对齐'},
|
|
|
- {code: 'right', name: '右对齐'},
|
|
|
+ { code: 'center', name: '居中' },
|
|
|
+ { code: 'left', name: '左对齐' },
|
|
|
+ { code: 'right', name: '右对齐' },
|
|
|
],
|
|
|
value: 'center'
|
|
|
},
|
|
|
@@ -463,8 +523,8 @@ export const widgetHeatmap = {
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
selectOptions: [
|
|
|
- {code: 'top', name: '顶部'},
|
|
|
- {code: 'bottom', name: '底部'},
|
|
|
+ { code: 'top', name: '顶部' },
|
|
|
+ { code: 'bottom', name: '底部' },
|
|
|
],
|
|
|
value: 'top'
|
|
|
},
|
|
|
@@ -475,8 +535,8 @@ export const widgetHeatmap = {
|
|
|
required: false,
|
|
|
placeholder: '',
|
|
|
selectOptions: [
|
|
|
- {code: 'vertical', name: '竖排'},
|
|
|
- {code: 'horizontal', name: '横排'},
|
|
|
+ { code: 'vertical', name: '竖排' },
|
|
|
+ { code: 'horizontal', name: '横排' },
|
|
|
],
|
|
|
value: 'horizontal'
|
|
|
},
|
|
|
@@ -488,9 +548,9 @@ export const widgetHeatmap = {
|
|
|
{
|
|
|
type: 'customColor',
|
|
|
label: '',
|
|
|
- name: 'lengedColorList',
|
|
|
+ name: 'legendColorList',
|
|
|
required: false,
|
|
|
- value: [{color: '#abd9e9'}, {color: '#74add1'}, {color: '#4575b4'}, {color: '#313695'}],
|
|
|
+ value: [{ color: '#abd9e9' }, { color: '#74add1' }, { color: '#4575b4' }, { color: '#313695' }],
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
@@ -534,106 +594,106 @@ export const widgetHeatmap = {
|
|
|
relactiveDom: 'dataType',
|
|
|
relactiveDomValue: 'staticData',
|
|
|
value: [
|
|
|
- {"axis": "0", "yaxis": "0", "num": 3320},
|
|
|
- {"axis": "0", "yaxis": "1", "num": 1561},
|
|
|
- {"axis": "0", "yaxis": "2", "num": 3194},
|
|
|
- {"axis": "0", "yaxis": "3", "num": 2899},
|
|
|
- {"axis": "0", "yaxis": "4", "num": 2363},
|
|
|
- {"axis": "0", "yaxis": "5", "num": 3945},
|
|
|
- {"axis": "0", "yaxis": "6", "num": 2051},
|
|
|
- {"axis": "0", "yaxis": "7", "num": 3657},
|
|
|
- {"axis": "0", "yaxis": "8", "num": 3304},
|
|
|
- {"axis": "0", "yaxis": "9", "num": 2990},
|
|
|
- {"axis": "1", "yaxis": "9", "num": 2663},
|
|
|
- {"axis": "1", "yaxis": "0", "num": 378},
|
|
|
- {"axis": "1", "yaxis": "1", "num": 4076},
|
|
|
- {"axis": "1", "yaxis": "2", "num": 3178},
|
|
|
- {"axis": "1", "yaxis": "3", "num": 1501},
|
|
|
- {"axis": "1", "yaxis": "4", "num": 1660},
|
|
|
- {"axis": "1", "yaxis": "5", "num": 726},
|
|
|
- {"axis": "1", "yaxis": "6", "num": 4148},
|
|
|
- {"axis": "1", "yaxis": "7", "num": 720},
|
|
|
- {"axis": "1", "yaxis": "8", "num": 430},
|
|
|
- {"axis": "2", "yaxis": "9", "num": 2983},
|
|
|
- {"axis": "2", "yaxis": "0", "num": 1917},
|
|
|
- {"axis": "2", "yaxis": "1", "num": 1188},
|
|
|
- {"axis": "2", "yaxis": "2", "num": 3581},
|
|
|
- {"axis": "2", "yaxis": "3", "num": 1781},
|
|
|
- {"axis": "2", "yaxis": "4", "num": 4725},
|
|
|
- {"axis": "2", "yaxis": "5", "num": 4077},
|
|
|
- {"axis": "2", "yaxis": "6", "num": 299},
|
|
|
- {"axis": "2", "yaxis": "7", "num": 4828},
|
|
|
- {"axis": "2", "yaxis": "8", "num": 1778},
|
|
|
- {"axis": "3", "yaxis": "9", "num": 3171},
|
|
|
- {"axis": "3", "yaxis": "0", "num": 2944},
|
|
|
- {"axis": "3", "yaxis": "1", "num": 763},
|
|
|
- {"axis": "3", "yaxis": "2", "num": 1678},
|
|
|
- {"axis": "3", "yaxis": "3", "num": 1765},
|
|
|
- {"axis": "3", "yaxis": "4", "num": 2949},
|
|
|
- {"axis": "3", "yaxis": "5", "num": 966},
|
|
|
- {"axis": "3", "yaxis": "6", "num": 4622},
|
|
|
- {"axis": "3", "yaxis": "7", "num": 2818},
|
|
|
- {"axis": "3", "yaxis": "8", "num": 3913},
|
|
|
- {"axis": "4", "yaxis": "9", "num": 4382},
|
|
|
- {"axis": "4", "yaxis": "0", "num": 1670},
|
|
|
- {"axis": "4", "yaxis": "1", "num": 4532},
|
|
|
- {"axis": "4", "yaxis": "2", "num": 2116},
|
|
|
- {"axis": "4", "yaxis": "3", "num": 2383},
|
|
|
- {"axis": "4", "yaxis": "4", "num": 510},
|
|
|
- {"axis": "4", "yaxis": "5", "num": 33},
|
|
|
- {"axis": "4", "yaxis": "6", "num": 4974},
|
|
|
- {"axis": "4", "yaxis": "7", "num": 3627},
|
|
|
- {"axis": "4", "yaxis": "8", "num": 2737},
|
|
|
- {"axis": "5", "yaxis": "9", "num": 656},
|
|
|
- {"axis": "5", "yaxis": "0", "num": 3689},
|
|
|
- {"axis": "5", "yaxis": "1", "num": 713},
|
|
|
- {"axis": "5", "yaxis": "2", "num": 3551},
|
|
|
- {"axis": "5", "yaxis": "3", "num": 3159},
|
|
|
- {"axis": "5", "yaxis": "4", "num": 4150},
|
|
|
- {"axis": "5", "yaxis": "5", "num": 1416},
|
|
|
- {"axis": "5", "yaxis": "6", "num": 3021},
|
|
|
- {"axis": "5", "yaxis": "7", "num": 1778},
|
|
|
- {"axis": "5", "yaxis": "8", "num": 863},
|
|
|
- {"axis": "6", "yaxis": "9", "num": 772},
|
|
|
- {"axis": "6", "yaxis": "0", "num": 1675},
|
|
|
- {"axis": "6", "yaxis": "1", "num": 1323},
|
|
|
- {"axis": "6", "yaxis": "2", "num": 2023},
|
|
|
- {"axis": "6", "yaxis": "3", "num": 43},
|
|
|
- {"axis": "6", "yaxis": "4", "num": 4964},
|
|
|
- {"axis": "6", "yaxis": "5", "num": 4781},
|
|
|
- {"axis": "6", "yaxis": "6", "num": 2608},
|
|
|
- {"axis": "6", "yaxis": "7", "num": 2278},
|
|
|
- {"axis": "6", "yaxis": "8", "num": 3285},
|
|
|
- {"axis": "7", "yaxis": "9", "num": 1977},
|
|
|
- {"axis": "7", "yaxis": "0", "num": 882},
|
|
|
- {"axis": "7", "yaxis": "1", "num": 2434},
|
|
|
- {"axis": "7", "yaxis": "2", "num": 4694},
|
|
|
- {"axis": "7", "yaxis": "3", "num": 3022},
|
|
|
- {"axis": "7", "yaxis": "4", "num": 1798},
|
|
|
- {"axis": "7", "yaxis": "5", "num": 2503},
|
|
|
- {"axis": "7", "yaxis": "6", "num": 693},
|
|
|
- {"axis": "7", "yaxis": "7", "num": 275},
|
|
|
- {"axis": "7", "yaxis": "8", "num": 3774},
|
|
|
- {"axis": "8", "yaxis": "9", "num": 1386},
|
|
|
- {"axis": "8", "yaxis": "0", "num": 1212},
|
|
|
- {"axis": "8", "yaxis": "1", "num": 1982},
|
|
|
- {"axis": "8", "yaxis": "2", "num": 1509},
|
|
|
- {"axis": "8", "yaxis": "3", "num": 94},
|
|
|
- {"axis": "8", "yaxis": "4", "num": 2082},
|
|
|
- {"axis": "8", "yaxis": "5", "num": 3930},
|
|
|
- {"axis": "8", "yaxis": "6", "num": 4528},
|
|
|
- {"axis": "8", "yaxis": "7", "num": 1861},
|
|
|
- {"axis": "8", "yaxis": "8", "num": 4582},
|
|
|
- {"axis": "9", "yaxis": "9", "num": 3038},
|
|
|
- {"axis": "9", "yaxis": "0", "num": 4038},
|
|
|
- {"axis": "9", "yaxis": "1", "num": 357},
|
|
|
- {"axis": "9", "yaxis": "2", "num": 306},
|
|
|
- {"axis": "9", "yaxis": "3", "num": 479},
|
|
|
- {"axis": "9", "yaxis": "4", "num": 823},
|
|
|
- {"axis": "9", "yaxis": "5", "num": 3442},
|
|
|
- {"axis": "9", "yaxis": "6", "num": 904},
|
|
|
- {"axis": "9", "yaxis": "7", "num": 399},
|
|
|
- {"axis": "9", "yaxis": "8", "num": 4869},
|
|
|
+ { "axis": "0", "yaxis": "0", "num": 3320 },
|
|
|
+ { "axis": "0", "yaxis": "1", "num": 1561 },
|
|
|
+ { "axis": "0", "yaxis": "2", "num": 3194 },
|
|
|
+ { "axis": "0", "yaxis": "3", "num": 2899 },
|
|
|
+ { "axis": "0", "yaxis": "4", "num": 2363 },
|
|
|
+ { "axis": "0", "yaxis": "5", "num": 3945 },
|
|
|
+ { "axis": "0", "yaxis": "6", "num": 2051 },
|
|
|
+ { "axis": "0", "yaxis": "7", "num": 3657 },
|
|
|
+ { "axis": "0", "yaxis": "8", "num": 3304 },
|
|
|
+ { "axis": "0", "yaxis": "9", "num": 2990 },
|
|
|
+ { "axis": "1", "yaxis": "9", "num": 2663 },
|
|
|
+ { "axis": "1", "yaxis": "0", "num": 378 },
|
|
|
+ { "axis": "1", "yaxis": "1", "num": 4076 },
|
|
|
+ { "axis": "1", "yaxis": "2", "num": 3178 },
|
|
|
+ { "axis": "1", "yaxis": "3", "num": 1501 },
|
|
|
+ { "axis": "1", "yaxis": "4", "num": 1660 },
|
|
|
+ { "axis": "1", "yaxis": "5", "num": 726 },
|
|
|
+ { "axis": "1", "yaxis": "6", "num": 4148 },
|
|
|
+ { "axis": "1", "yaxis": "7", "num": 720 },
|
|
|
+ { "axis": "1", "yaxis": "8", "num": 430 },
|
|
|
+ { "axis": "2", "yaxis": "9", "num": 2983 },
|
|
|
+ { "axis": "2", "yaxis": "0", "num": 1917 },
|
|
|
+ { "axis": "2", "yaxis": "1", "num": 1188 },
|
|
|
+ { "axis": "2", "yaxis": "2", "num": 3581 },
|
|
|
+ { "axis": "2", "yaxis": "3", "num": 1781 },
|
|
|
+ { "axis": "2", "yaxis": "4", "num": 4725 },
|
|
|
+ { "axis": "2", "yaxis": "5", "num": 4077 },
|
|
|
+ { "axis": "2", "yaxis": "6", "num": 299 },
|
|
|
+ { "axis": "2", "yaxis": "7", "num": 4828 },
|
|
|
+ { "axis": "2", "yaxis": "8", "num": 1778 },
|
|
|
+ { "axis": "3", "yaxis": "9", "num": 3171 },
|
|
|
+ { "axis": "3", "yaxis": "0", "num": 2944 },
|
|
|
+ { "axis": "3", "yaxis": "1", "num": 763 },
|
|
|
+ { "axis": "3", "yaxis": "2", "num": 1678 },
|
|
|
+ { "axis": "3", "yaxis": "3", "num": 1765 },
|
|
|
+ { "axis": "3", "yaxis": "4", "num": 2949 },
|
|
|
+ { "axis": "3", "yaxis": "5", "num": 966 },
|
|
|
+ { "axis": "3", "yaxis": "6", "num": 4622 },
|
|
|
+ { "axis": "3", "yaxis": "7", "num": 2818 },
|
|
|
+ { "axis": "3", "yaxis": "8", "num": 3913 },
|
|
|
+ { "axis": "4", "yaxis": "9", "num": 4382 },
|
|
|
+ { "axis": "4", "yaxis": "0", "num": 1670 },
|
|
|
+ { "axis": "4", "yaxis": "1", "num": 4532 },
|
|
|
+ { "axis": "4", "yaxis": "2", "num": 2116 },
|
|
|
+ { "axis": "4", "yaxis": "3", "num": 2383 },
|
|
|
+ { "axis": "4", "yaxis": "4", "num": 510 },
|
|
|
+ { "axis": "4", "yaxis": "5", "num": 33 },
|
|
|
+ { "axis": "4", "yaxis": "6", "num": 4974 },
|
|
|
+ { "axis": "4", "yaxis": "7", "num": 3627 },
|
|
|
+ { "axis": "4", "yaxis": "8", "num": 2737 },
|
|
|
+ { "axis": "5", "yaxis": "9", "num": 656 },
|
|
|
+ { "axis": "5", "yaxis": "0", "num": 3689 },
|
|
|
+ { "axis": "5", "yaxis": "1", "num": 713 },
|
|
|
+ { "axis": "5", "yaxis": "2", "num": 3551 },
|
|
|
+ { "axis": "5", "yaxis": "3", "num": 3159 },
|
|
|
+ { "axis": "5", "yaxis": "4", "num": 4150 },
|
|
|
+ { "axis": "5", "yaxis": "5", "num": 1416 },
|
|
|
+ { "axis": "5", "yaxis": "6", "num": 3021 },
|
|
|
+ { "axis": "5", "yaxis": "7", "num": 1778 },
|
|
|
+ { "axis": "5", "yaxis": "8", "num": 863 },
|
|
|
+ { "axis": "6", "yaxis": "9", "num": 772 },
|
|
|
+ { "axis": "6", "yaxis": "0", "num": 1675 },
|
|
|
+ { "axis": "6", "yaxis": "1", "num": 1323 },
|
|
|
+ { "axis": "6", "yaxis": "2", "num": 2023 },
|
|
|
+ { "axis": "6", "yaxis": "3", "num": 43 },
|
|
|
+ { "axis": "6", "yaxis": "4", "num": 4964 },
|
|
|
+ { "axis": "6", "yaxis": "5", "num": 4781 },
|
|
|
+ { "axis": "6", "yaxis": "6", "num": 2608 },
|
|
|
+ { "axis": "6", "yaxis": "7", "num": 2278 },
|
|
|
+ { "axis": "6", "yaxis": "8", "num": 3285 },
|
|
|
+ { "axis": "7", "yaxis": "9", "num": 1977 },
|
|
|
+ { "axis": "7", "yaxis": "0", "num": 882 },
|
|
|
+ { "axis": "7", "yaxis": "1", "num": 2434 },
|
|
|
+ { "axis": "7", "yaxis": "2", "num": 4694 },
|
|
|
+ { "axis": "7", "yaxis": "3", "num": 3022 },
|
|
|
+ { "axis": "7", "yaxis": "4", "num": 1798 },
|
|
|
+ { "axis": "7", "yaxis": "5", "num": 2503 },
|
|
|
+ { "axis": "7", "yaxis": "6", "num": 693 },
|
|
|
+ { "axis": "7", "yaxis": "7", "num": 275 },
|
|
|
+ { "axis": "7", "yaxis": "8", "num": 3774 },
|
|
|
+ { "axis": "8", "yaxis": "9", "num": 1386 },
|
|
|
+ { "axis": "8", "yaxis": "0", "num": 1212 },
|
|
|
+ { "axis": "8", "yaxis": "1", "num": 1982 },
|
|
|
+ { "axis": "8", "yaxis": "2", "num": 1509 },
|
|
|
+ { "axis": "8", "yaxis": "3", "num": 94 },
|
|
|
+ { "axis": "8", "yaxis": "4", "num": 2082 },
|
|
|
+ { "axis": "8", "yaxis": "5", "num": 3930 },
|
|
|
+ { "axis": "8", "yaxis": "6", "num": 4528 },
|
|
|
+ { "axis": "8", "yaxis": "7", "num": 1861 },
|
|
|
+ { "axis": "8", "yaxis": "8", "num": 4582 },
|
|
|
+ { "axis": "9", "yaxis": "9", "num": 3038 },
|
|
|
+ { "axis": "9", "yaxis": "0", "num": 4038 },
|
|
|
+ { "axis": "9", "yaxis": "1", "num": 357 },
|
|
|
+ { "axis": "9", "yaxis": "2", "num": 306 },
|
|
|
+ { "axis": "9", "yaxis": "3", "num": 479 },
|
|
|
+ { "axis": "9", "yaxis": "4", "num": 823 },
|
|
|
+ { "axis": "9", "yaxis": "5", "num": 3442 },
|
|
|
+ { "axis": "9", "yaxis": "6", "num": 904 },
|
|
|
+ { "axis": "9", "yaxis": "7", "num": 399 },
|
|
|
+ { "axis": "9", "yaxis": "8", "num": 4869 },
|
|
|
]
|
|
|
},
|
|
|
{
|