Version

Configuring the Final Value Layer (igDataChart)

Topic Overview

Purpose

This topic provides information about the final value layer annotations. It describes the properties of the final value layer and also provides an example of its implementation.

Required background

The following topics are prerequisites to understanding this topic:

  • Adding igDataChart: This topic demonstrates how to add the igDataChart™ control to a page and bind it to data.

  • Binding igDataChart to Data: This topic explains how to bind the igDataChart™ control to various data sources (JavaScript array, IQueryable<T>, web service).

In this topic

This topic contains the following sections:

Overview

The finalValueLayer displays annotations based on the final value of data in the chart.

Preview

The following image is a preview of how the igDataChart control renders with the finalValueLayer added.

Properties

Item tooltip layer summary

The following table summarizes the properties of the finalValueLayer layer.

Property Name Property Type Description
finalValueSelectionMode enumeration Specifies method for how the final value is identified.

Example

The code snippet below demonstrates how to enable the final value layer.

In HTML:

$(function () {
    $("#chart1").igDataChart({
        series: [
            {
                name: "finalValueSeries",
                type: "finalValueLayer"
            }
        ]
    });
});

Related Content

Topics

  • Hover Interactions Overview (igDataChart): This topic provides conceptual information about the hover interactions available on the igDataChart control including the different types of hover interaction layers available.

Samples

The following samples provide additional information related to this topic.

View on GitHub