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.
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.
Hi Hristo,
Thanks for the information. In case anyone else is looking for the same thing I was also able to find an overview of the chart control that included all applicable options, events, methods, etc. in the following link: igDataChart
Thanks, Calvin
Yes, Calvin,
This link is the API documentation, that is available for each component in the IgniteUI toolset.