Browse Source

fix demo axes labels

merge-requests/5/head
rozetko 2 years ago
parent
commit
2ea990aaeb
  1. 10
      examples/demo.html

10
examples/demo.html

@ -45,11 +45,13 @@
axis: { axis: {
x: { x: {
format: 'numeric', format: 'numeric',
range: [-100, 300] range: [-100, 300],
label: 'x'
}, },
y: { y: {
invert: true, invert: true,
range: [-100, 250] range: [-100, 250],
label: 'y'
}, },
y1: { y1: {
isActive: true, isActive: true,
@ -70,10 +72,6 @@
orientation: 'both', orientation: 'both',
color: 'gray' color: 'gray'
}, },
labelFormat: {
yAxis: 'y',
xAxis: 'x'
},
eventsCallbacks: { eventsCallbacks: {
zoomOut: () => { pod.render() } zoomOut: () => { pod.render() }
}, },

Loading…
Cancel
Save