Browse Source

no message

featrue/v4.3
xpz2018 5 years ago
parent
commit
82e664fe86
1 changed files with 1 additions and 1 deletions
  1. 2
      utils/wxcharts.js

2
utils/wxcharts.js

@ -521,7 +521,7 @@ function drawPointShape(points, color, shape, context) {
points.forEach(function (item, index) {
if (item !== null) {
context.moveTo(item.x + 3.5, item.y);
context.arc(item.x, item.y, 4, 0, 2 * Math.PI, false);
context.arc(item.x, item.y, 3, 0, 2 * Math.PI, false);
}
});
} else if (shape === 'rect') {

Loading…
Cancel
Save