Line Graph Using Flot Is Over Lapping
I have the following Options using for the Graph
functioncross1(ctx, x, y, radius, shadow) {
var size = radius * Math.sqrt(Math.PI) / 2;
ctx.moveTo(x - size, y - size);
ctx.lineTo(x + size, y + size);
ctx.moveTo(x - size, y + size);
ctx.lineTo(x + size, y - size);
};
functioncross2(ctx, x, y, radius, shadow) {
var size = radius * Math.sqrt(Math.PI) / Math.sqrt(2);
ctx.moveTo(x - size, y);
ctx.lineTo(x + size, y);
ctx.moveTo(x, y + size);
ctx.lineTo(x, y - size);
};
See this fiddle for the full example.
Post a Comment for "Line Graph Using Flot Is Over Lapping"