Thanks for the reply.
Trying your code I wrote this:
$(function () {
var d1 = [];
for (var i = 0; i < 14; i += 0.5)
d1.push([i, Math.sin(i)]);
var options = {
series: {
color:"red",
lines:
{
show: true,
fill: true,
fillColor: "blue",
},
points:
{
show: true,
fill: true,
fillColor: "black"
}
}
};
// a null signifies separate line segments
$.plot($("#placeholder"), [ d1], options);
});
As you can see in the image, the points are blacks, but are surrounded by the color of the line (red). I would not have this contouring or having the same color of the point.
