Skip to content

Commit

Permalink
Qualify label in builder
Browse files Browse the repository at this point in the history
  • Loading branch information
drewnoakes committed Dec 7, 2021
1 parent e9b2d51 commit 23ee85c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion builder/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,7 @@
return value !== 0;
}
});

// Series
startControlSection('Series');
bindColor({target: chart.seriesSet[0].options, name: 'Series line color', propertyName: 'strokeStyle', optional: true, enabled: true, opacity: 1, emptyValue: 'none'});
Expand All @@ -430,7 +431,7 @@
bindColor({target: chart.options.grid, name: 'Grid line color', propertyName: 'strokeStyle', opacity: 1});
bindRange({target: chart.options.grid, name: 'Vertical sections', propertyName: 'verticalSections', min: 0, max: 20});
bindRange({target: chart.options.grid, name: 'Time line spacing', propertyName: 'millisPerLine', min: 1000, max: 10000, step: 1000});
bindCheckBox({target: chart.options.grid, name: 'Draw border', propertyName: 'borderVisible'});
bindCheckBox({target: chart.options.grid, name: 'Draw outer border', propertyName: 'borderVisible'});

// Labels
startControlSection('Labels');
Expand Down

0 comments on commit 23ee85c

Please sign in to comment.