We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 149ffdd commit c712833Copy full SHA for c712833
examples/index.html
@@ -74,7 +74,7 @@ <h1>A spectrum-generator module usage example</h1>
74
.autoAxis() // Assigns axes
75
.setWaveform(waveForm);
76
77
- if (false && json.labels) {
+ if (json.labels) {
78
for (let label of json.labels) {
79
const shape = graph.newShape('label', {
80
label: {
@@ -91,7 +91,7 @@ <h1>A spectrum-generator module usage example</h1>
91
}
92
93
94
- if (false && json.lines) {
+ if (json.lines) {
95
for (let line of json.lines) {
96
const shape = graph.newShape('line', {
97
position: line,
0 commit comments