Skip to content

Commit 8e113eb

Browse files
committed
fix typo in d3 selection class name
1 parent 03cb7c3 commit 8e113eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/traces/indicator/plot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ function drawAngularGauge(gd, plotGroup, cd, gaugeOpts) {
484484
// Draw foreground with transition
485485
var valueArcPath = arcPathGenerator(trace.gauge.bar.thickness);
486486
var fgArc = angularGauge.selectAll('g.fg-arc').data([trace.gauge.bar]);
487-
fgArc.enter().append('g').classed('fgarc', true).append('path');
487+
fgArc.enter().append('g').classed('fg-arc', true).append('path');
488488
var fgArcPath = fgArc.select('path');
489489
if(hasTransition) {
490490
fgArcPath

0 commit comments

Comments
 (0)