Skip to content

Commit f4b63f0

Browse files
authored
Merge pull request #32 from graphieros/xy-remove-canvas
Xy remove canvas
2 parents b8cffb9 + e9ebd28 commit f4b63f0

File tree

4 files changed

+27
-616
lines changed

4 files changed

+27
-616
lines changed

TestingArena/ArenaVueUiXy.vue

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ const dataset = ref([
1515
dataLabels: true,
1616
scaleSteps: 2,
1717
},
18-
// {
19-
// name: "S1",
20-
// series: [8, 4, 8, 16, 12, 13, 16, 25, 12, 3, 7, 12, 6],
21-
// type: "bar",
22-
// smooth: false,
23-
// useArea: true,
24-
// scaleSteps: 2,
25-
// },
18+
{
19+
name: "S1",
20+
series: [8, 4, 8, 16, 12, 13, 16, 25, 12, 3, 7, 12, 6],
21+
type: "bar",
22+
smooth: false,
23+
useArea: true,
24+
scaleSteps: 2,
25+
},
2626
// {
2727
// name: "S2",
2828
// series: [10,12,10,12, 25, 12, 4, 4, 3, 7, 8, 9, 12],
@@ -44,7 +44,7 @@ const dataset = ref([
4444
])
4545
4646
const model = ref([
47-
{ key: 'useCanvas', def: false, type: 'checkbox'}, // DEPRECATED
47+
{ key: 'useCanvas', def: false, type: 'checkbox'}, // DEPRECATED (removed)
4848
{ key: 'useCssAnimation', def: true, type: 'checkbox', label: 'useCssAnimation', category: 'general' },
4949
{ key: 'chart.fontFamily', def: 'inherit', type: 'text', label: 'fontFamily', category: 'general' },
5050
{ key: 'chart.backgroundColor', def: '#FFFFFF', type: 'color', label: 'backgroundColor', category: 'general' },
@@ -147,6 +147,9 @@ const model = ref([
147147
{ key: 'bar.serieName.useSerieColor', def: true, type: 'checkbox', label: ['serieName', 'textColor', 'is', 'series'], category: 'bar' },
148148
{ key: 'bar.serieName.color', def: '#1A1A1A', type: 'color', label: ['serieName', 'is', 'textColor'], category: 'bar' },
149149
{ key: 'bar.periodGap', def: 0.1, type: 'number', min: 0, max: 24},
150+
{ key: 'bar.border.useSerieColor', def: false, type: 'checkbox'},
151+
{ key: 'bar.border.stroke', def: '#FFFFFF', type: 'color'},
152+
{ key: 'bar.border.strokeWidth', def: 1, type: 'number', min: 0, max: 12, step: 0.5},
150153
151154
{ key: 'line.radius', def: 6, type: 'number', min: 0, max: 20, label: 'radius', category: 'line' },
152155
{ key: 'line.useGradient', def: true, type: 'checkbox', label: 'useGradient', category: 'line' },

0 commit comments

Comments
 (0)