The Final Value Layer displays an annotation along the axis where the final value of your data is shown.
The Final Value Layer is enabled by setting the finalValueAnnotationsVisible
option to true.
The code snippet below demonstrates how to enable the Final Value Layer for the igCategoryChart
.
In HTML:
$(function () {
$("chart1").igCategoryChart({
finalValueAnnotationsVisible: true
});
});
The following screenshot displays the igCategoryChart control using the Final Value Layer.
View on GitHub