1
I’m using the plugin float Charts to generate line graphics. Until then I have this chart:
As a configuration of plugin
, I am informing you that this line must have a symbol
of the kind circle
But I need the middle symbol, not to be a circle, to be another symbol according to a certain condition
How can I do that? There are some extra plugin or even another plugin for Charts that let me do this ?
[Edit]
As requested.
The graph itself is generated from the data that is passed to it. Currently I am passing as follows:
var data = [
{
data: [
[1, 100],
[2, 150],
[3, 200],
[4, 205],
[5, 100],
[6, 100],
[7, 100],
[8, 200],
[9, 100],
[10, 100]
],
color: '#21610B',
points: { symbol: "circle" }
},
];
As I quoted, the value of symbol
is circle
, that is, every point will be a circle, but I wish that some points, according to a certain condition, this point is not circle
It also has the options, which are like this:
var options = {
series: {
lines: {
show: true
},
points: {
show: true,
radius: 3
}
}
}
Post the code you have made, or if possible put as fiddle.
– Marconi
@Marconi I posted the code that is
– Rod