
The below image demonstrates using the trendline layer with the igFinancialChart. There are a variety of trendline types to choose from. You can Adjust this by using the trendline drop down currently displaying QuadraticFit.
Note: these properties apply to all chart panes and the same trend line type will be applied to all chart panes.
The following demonstrates how to set the TrendLineType through code:
In JavaScript
$("#financialChart").igFinancialChart({
dataSource: data,
trendLineType: "QuinticFit",
trendLineBrushes: ["Green"],
trendLineThickness: 2
});
$("#financialChart").igFinancialChart("option", "trendLineType", "QuinticFit");
$("#financialChart").igFinancialChart("option", "trendLineBrushes", ["Green"]);
$("#financialChart").igFinancialChart("option", "trendLineThickness", 2);
View on GitHub