12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- (function(global) {
- var Samples = global.Samples || (global.Samples = {});
- Samples.items = [{
- title: 'Charts',
- items: [{
- title: 'Bar',
- path: 'charts/bar.html'
- }, {
- title: 'Line',
- path: 'charts/line.html'
- }, {
- title: 'Doughnut',
- path: 'charts/doughnut.html'
- }, {
- title: 'Polar Area',
- path: 'charts/polar.html'
- }, {
- title: 'Radar',
- path: 'charts/radar.html'
- }, {
- title: 'Bubble',
- path: 'charts/bubble.html'
- }]
- }, {
- title: 'Scriptable',
- items: [{
- title: 'Interactions',
- path: 'scriptable/interactions.html'
- }, {
- title: 'Data',
- path: 'scriptable/data.html'
- }, {
- title: 'Dataset',
- path: 'scriptable/dataset.html'
- }, {
- title: 'Indices',
- path: 'scriptable/indices.html'
- }, {
- title: 'Mirror',
- path: 'scriptable/mirror.html'
- }]
- }, {
- title: 'Events',
- items: [{
- title: 'Listeners',
- path: 'events/listeners.html'
- }, {
- title: 'Highlight',
- path: 'events/highlight.html'
- }, {
- title: 'Selection',
- path: 'events/selection.html'
- }]
- }, {
- title: 'Formatting',
- items: [{
- title: 'Custom Labels',
- path: 'formatting/custom-labels.html'
- }]
- }];
- }(this));
|