Browse Source

Update icon to reflect style

v3_develop
Chris Jackson 10 years ago
parent
commit
ae8350e408
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      lib/timeline/component/GraphGroup.js

+ 4
- 0
lib/timeline/component/GraphGroup.js View File

@ -89,6 +89,10 @@ GraphGroup.prototype.drawIcon = function(x, y, JSONcontainer, SVGcontainer, icon
if (this.options.style == 'line') {
path = DOMutil.getSVGElement("path", JSONcontainer, SVGcontainer);
path.setAttributeNS(null, "class", this.className);
if(this.style !== undefined) {
path.setAttributeNS(null, "style", this.style);
}
path.setAttributeNS(null, "d", "M" + x + ","+y+" L" + (x + iconWidth) + ","+y+"");
if (this.options.shaded.enabled == true) {
fillPath = DOMutil.getSVGElement("path", JSONcontainer, SVGcontainer);

Loading…
Cancel
Save