Browse Source

Merge pull request #189 from nostalgiaz/patch1

Lable -> Label
pull/195/head
Masayuki Tanaka 11 years ago
parent
commit
0f3d735612
  1. 8
      htdocs/samples/grid_x_lines.html
  2. 8
      htdocs/samples/grid_y_lines.html

8
htdocs/samples/grid_x_lines.html

@ -20,21 +20,21 @@
}, },
grid: { grid: {
x: { x: {
lines: [{value: 3, text:'Lable 3'}, {value: 4.5, text: 'Lable 4.5'}] lines: [{value: 3, text:'Label 3'}, {value: 4.5, text: 'Label 4.5'}]
} }
} }
}); });
setTimeout(function () { setTimeout(function () {
chart.xgrids([{value: 1, text:'Lable 1'}, {value: 4, text: 'Lable 4'}]); chart.xgrids([{value: 1, text:'Label 1'}, {value: 4, text: 'Label 4'}]);
}, 1000); }, 1000);
setTimeout(function () { setTimeout(function () {
chart.xgrids([{value: 2, text:'Lable 2'}]); chart.xgrids([{value: 2, text:'Label 2'}]);
}, 2000); }, 2000);
setTimeout(function () { setTimeout(function () {
chart.xgrids.add([{value: 3, text:'Lable 3', class:'hoge'}]); chart.xgrids.add([{value: 3, text:'Label 3', class:'hoge'}]);
}, 3000); }, 3000);
setTimeout(function () { setTimeout(function () {

8
htdocs/samples/grid_y_lines.html

@ -20,21 +20,21 @@
}, },
grid: { grid: {
y: { y: {
lines: [{value: 30, text:'Lable 30'}, {value: 250, text: 'Lable 250'}] lines: [{value: 30, text:'Label 30'}, {value: 250, text: 'Label 250'}]
} }
} }
}); });
setTimeout(function () { setTimeout(function () {
chart.ygrids([{value: 130, text:'Lable 130'}, {value: 50, text: 'Lable 50'}]); chart.ygrids([{value: 130, text:'Label 130'}, {value: 50, text: 'Label 50'}]);
}, 1000); }, 1000);
setTimeout(function () { setTimeout(function () {
chart.ygrids([{value: 130, text:'Lable 130', class: 'hoge'}]); chart.ygrids([{value: 130, text:'Label 130', class: 'hoge'}]);
}, 2000); }, 2000);
setTimeout(function () { setTimeout(function () {
chart.ygrids.add([{value: 230, text:'Lable 230'}]); chart.ygrids.add([{value: 230, text:'Label 230'}]);
}, 3000); }, 3000);
setTimeout(function () { setTimeout(function () {

Loading…
Cancel
Save