Version

Getting Started with igFinancialChart

Purpose

This topic explains using a code example how to add the igFinancialChart control to JQuery applications.

In this topic

This topic contains the following sections:

Adding igFinancialChart to the JQuery application

Introduction

The following procedure demonstrates adding the igFinancialChart to JQuery applications.

Preview

The following is a screenshot of the igFinancialChart

financialchart jquery multidata.png

Overview

Following is a conceptual overview of the process:

1. Adding the igFinancialChart control to JQuery applications

2. Verifying the results

Steps

The following procedure takes you through the steps necessary for adding the igFinancialChart control to a page.

1. Add the igFinancialChart control to the page.

The following code demonstrates adding the igFinancialChart control with the minimum code and property settings required for display.

Add an element for the igFinancialChart to be attached:

In HTML

<body>
    <div id="financialChart"></div>
</body>

Attach the igFinancialChart to the element:

In JavaScript

$("#financialChart").igFinancialChart({ dataSource: data });

2. Verify the results.

Build and run your project to verify the result. If you have implemented the steps correctly, the displayed igFinancialChart should look like the one in the Preview section above.

Related Content

Topics

The following topics provide additional information related to this topic:

Topic Purpose

This topic describes in detail how to bind the control to data.

This topic provides a conceptual overview of the Financial Chart control.

View on GitHub