Browse Source

Typo fix

pull/1696/head
Michiel 9 years ago
parent
commit
dffc1b6de0
  1. 4
      c3.js
  2. 12
      c3.min.js
  3. 4
      src/shape.line.js

4
c3.js

@ -3196,7 +3196,7 @@
$$.mainCircle.enter().append("circle")
.attr("class", $$.classCircle.bind($$))
.attr("r", $$.pointR.bind($$))
.style($$.config.point_stroked ? "stroked" : "fill", $$.color);
.style($$.config.point_stroked ? "stroke" : "fill", $$.color);
$$.mainCircle
.style("opacity", $$.initialOpacityForCircle.bind($$));
$$.mainCircle.exit().remove();
@ -3207,7 +3207,7 @@
return [
(withTransition ? this.mainCircle.transition(Math.random().toString()) : this.mainCircle)
.style('opacity', this.opacityForCircle.bind(this))
.style($$.config.point_stroked ? "stroked" : "fill", this.color)
.style($$.config.point_stroked ? "stroke" : "fill", this.color)
.attr("cx", cx)
.attr("cy", cy),
(withTransition ? selectedCircles.transition(Math.random().toString()) : selectedCircles)

12
c3.min.js vendored

File diff suppressed because one or more lines are too long

4
src/shape.line.js

@ -307,7 +307,7 @@ c3_chart_internal_fn.updateCircle = function () {
$$.mainCircle.enter().append("circle")
.attr("class", $$.classCircle.bind($$))
.attr("r", $$.pointR.bind($$))
.style($$.config.point_stroked ? "stroked" : "fill", $$.color);
.style($$.config.point_stroked ? "stroke" : "fill", $$.color);
$$.mainCircle
.style("opacity", $$.initialOpacityForCircle.bind($$));
$$.mainCircle.exit().remove();
@ -318,7 +318,7 @@ c3_chart_internal_fn.redrawCircle = function (cx, cy, withTransition) {
return [
(withTransition ? this.mainCircle.transition(Math.random().toString()) : this.mainCircle)
.style('opacity', this.opacityForCircle.bind(this))
.style($$.config.point_stroked ? "stroked" : "fill", this.color)
.style($$.config.point_stroked ? "stroke" : "fill", this.color)
.attr("cx", cx)
.attr("cy", cy),
(withTransition ? selectedCircles.transition(Math.random().toString()) : selectedCircles)

Loading…
Cancel
Save