Browse Source

Updated history

flowchartTest
jos 9 years ago
parent
commit
faddd158d4
2 changed files with 7 additions and 2 deletions
  1. +5
    -0
      HISTORY.md
  2. +2
    -2
      lib/graph3d/Graph3d.js

+ 5
- 0
HISTORY.md View File

@ -8,6 +8,11 @@ http://visjs.org
- Properly fixed the _lockedRedraw method.
- Fixed node resizing on dragging.
### Graph3d
- Do not change `backgroundColor` when not provided in options. Thanks @ozydingo.
## 2015-07-03, version 4.4.0
### General

+ 2
- 2
lib/graph3d/Graph3d.js View File

@ -1512,7 +1512,7 @@ Graph3d.prototype._redrawDataGrid = function() {
else {
v = 1;
fillStyle = this._hsv2rgb(h, s, v);
strokeStyle = this.axisColor;
strokeStyle = this.axisColor; // TODO: should be customizable
}
}
else {
@ -1530,7 +1530,7 @@ Graph3d.prototype._redrawDataGrid = function() {
ctx.lineTo(top.screen.x, top.screen.y);
ctx.closePath();
ctx.fill();
ctx.stroke();
ctx.stroke(); // TODO: only draw stroke when strokeWidth > 0
}
}
}

Loading…
Cancel
Save