| layout | post |
|---|---|
| title | Empty Points with JavaScript Chart | Syncfusion |
| description | Learn here about how to show or hide an empty point in Essential JavaScript Chart control, its elements, and more. |
| platform | js |
| control | Chart |
| documentation | ug |
| api | /api/js/ejchart |
The Data points that uses the null or undefined as value are considered as empty points. Empty data points are ignored and not plotted in the Chart. When the data is provided by using the points property, you can set the isEmpty to true to specify that the particular point is an empty point.
{% highlight javascript %}
$("#container").ejChart({
series:[ {
//Using empty points
points: [
{ x: 0, y: 210 },
{ x: 1, y: null }, { x: 2, y: 150 },
{ x: 3, y: 180,isEmpty: true },
{ x: 4, y: 170},
{ x: 5, y: 200 },
{ x: 6, y: 140, isEmpty: true },
{ x: 7, y: 120 }, { x: 8, y: 140 }
],
}],
// ...
});
{% endhighlight %}
Click here to view the online demo sample for empty points.
You can customize the empty points visibility and change its displayMode (gap, zero and average) using emptyPointSettings option.
{% highlight javascript %}
$("#container").ejChart({
series:[ {
//...
emptyPointSettings: {
// visible the empty point settings with displayMode as average
visible: true,
displayMode : "average"
},
}],
// ...
});
{% endhighlight %}
If the visible property of emptyPointSettings is false, then the empty points has been dropped and chart will be rendered without empty points.
Empty points color and border can be customized using style property of emptyPointSettings. The color and width of border can customized using the properties color and width.
{% highlight javascript %}
$("#container").ejChart({
series:[{
//...
emptyPointSettings: {
visible: true,
//Customizing empty points styles
style: {
color: "#ffa000",
border:{
color: "gray",
width:2
}
}
},
}],
// ...
});
{% endhighlight %}



