You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`indicatorTypes` — Array of indicators (0 or more)
193
-
-`zoomSliderType` — Zoom pane display (defaults to match chartType)
194
-
-**Indicators**: RSI, MACD, Bollinger Bands, Force Index, Standard Deviation, and more
189
+
-`chartType` — Price display type (`Auto`, `Line`, `Candle`, `Bar`, `Column` from `FinancialChartType`)
190
+
-`volumeType` — Volume display (`None`, `Column`, `Line`, `Area` from `FinancialChartVolumeType`)
191
+
-`indicatorTypes` — `IgxFinancialIndicatorTypeCollection`; accepts a comma-separated string or array of `FinancialIndicatorType` enum names (see list below). **Use the full enum name, not abbreviations** — e.g. `RelativeStrengthIndex` not `RSI`, `MovingAverageConvergenceDivergence` not `MACD`. Invalid values throw `Invalid FinancialIndicatorType value: <name>` at runtime.
192
+
-`overlayTypes` — `IgxFinancialOverlayTypeCollection`; valid values are `BollingerBands` and `PriceChannel` (these are overlays on the price pane, **not** indicators — passing `BollingerBands` to `indicatorTypes` throws).
-**Data Binding**: The component only exposes `dataSource: Array<any>`. It auto-detects OHLC, volume, and date fields from the data — **no `openMemberPath`/`highMemberPath`/`closeMemberPath`/`volumeMemberPath`/`dateMemberPath` inputs exist on `IgxFinancialChartComponent`**. Those member-path properties live on the individual series/indicator sub-components (e.g. `IgxFinancialPriceSeriesComponent`) if you build the chart from lower-level primitives.
202
200
203
201
### Pie Chart (`IgxPieChartComponent` or `IgxDataPieChartComponent`)
204
202
-**Use**: Part-to-whole visualization (segments sum to 100%)
chartType: FinancialChartType; // Auto, Line, Candle, Bar, Column
262
-
itemsSource: any[];
263
-
openMemberPath: string;
264
-
highMemberPath: string;
265
-
lowMemberPath: string;
266
-
closeMemberPath: string;
267
-
volumeMemberPath: string;
268
-
dateMemberPath: string;
269
-
volumeType: VolumeType; // None, Column, Line, Area
270
-
indicatorTypes: IndicatorType[]; // RSI, MACD, etc.
271
-
zoomSliderType: FinancialChartType; // Should match chartType
272
-
xAxisTitle: string;
259
+
dataSource: Array<any>; // OHLC/volume/date fields are auto-detected — no member-path inputs on this component
260
+
chartType: FinancialChartType; // Auto, Bar, Candle, Column, Line
261
+
volumeType: FinancialChartVolumeType; // None, Column, Line, Area
262
+
indicatorTypes: IgxFinancialIndicatorTypeCollection; // e.g. "MoneyFlowIndex, AverageTrueRange" — use full FinancialIndicatorType enum names, NOT "RSI"/"MACD"
263
+
overlayTypes: IgxFinancialOverlayTypeCollection; // "BollingerBands" or "PriceChannel" (overlays, not indicators)
264
+
zoomSliderType: FinancialChartZoomSliderType; // None, Auto, Bar, Candle, Column, Line, Area — Auto matches chartType
265
+
xAxisMode: FinancialChartXAxisMode; // Ordinal, Time
0 commit comments