Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
90
Ignite UI for JavaScript igDataChart properties
posted

Hi,

I'm in the process of investigating the capabilities of the igDataChart control to see if it'll meet our requirements. What I would like to know is if there is a way to see what properties are available while writing JS code.  For example, how do I know what properties are available when creating a series. Below is a sample I hauled from the IG website and as you can see it references properties like: markerType, xAxis, brush, etc. How do I know what else is available?

var series = {
type: "line",
markerType: "none",
xAxis: "xAxis",
yAxis: "yAxis",
brush: "#008DFF",
name: seriesMemberPath + "series",
title: seriesTitle,
valueMemberPath: seriesMemberPath,
isTransitionInEnabled: true,
isHighlightingEnabled: true,
showTooltip: true,
thickness: 3
}

Thanks.

Parents
No Data
Reply
  • 16310
    Verified Answer
    Offline posted

    Hi Calvin,

    If you are writing in typescript, you can benefit in strong typing, compile time checking and intellisense features due to the type definitions.

    Also, there is the intellisense extension for VS Code that will provide Intellisense for the Ignite UI product.

    Please let me know if you have further questions.

Children