Skip to content

Commit 137b788

Browse files
committed
chore(*): updating financial chart skills
1 parent fcede66 commit 137b788

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

  • skills/igniteui-angular-components/references

skills/igniteui-angular-components/references/charts.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ chartComponent.itemsSource = dataArray;
5757

5858
### Chart Type Selection
5959
- **Category Chart**: `chartType` property (Auto, Area, Column, Line, Point, etc.)
60-
- **Financial Chart**: `chartType` property (Line, Candlestick, OHLC Bar)
60+
- **Financial Chart**: `chartType` property (Auto, Candle, Line, Bar, Column)
6161
- **Data Chart**: Configure explicit series (IgxAreaSeriesComponent, IgxBarSeriesComponent, IgxBarSeries, etc.)
6262
- **Pie Chart**: No chartType needed; inherent pie structure
6363

@@ -75,6 +75,7 @@ chartComponent.itemsSource = dataArray;
7575

7676
**IgxFinancialChartComponent** (stock data):
7777
- `dataSource` — Data array with date + OHLC columns
78+
- `chartType` — Chart type (Auto, Candle, Line, Bar, Column)
7879
- `openMemberPath`, `highMemberPath`, `lowMemberPath`, `closeMemberPath` — OHLC field names
7980

8081
**IgxPieChartComponent**:
@@ -184,9 +185,9 @@ chartComponent.itemsSource = dataArray;
184185
- **Volume Pane**: Show trading volume (column, line, or area chart)
185186
- **Indicator Pane**: Financial indicators (RSI, MACD, Bollinger Bands, etc.)
186187
- **Zoom Pane**: Navigation slider to zoom/pan
187-
- **Chart Types**: `Line`, `Candlestick` (default), `OHLC Bar`, `Column`
188+
- **Chart Types**: `Auto` (default), `Candle`, `Line`, `Bar`, `Column`
188189
- **API**:
189-
- `chartType` — Price display type (Line, Candlestick, OHLC, Column — default Auto)
190+
- `chartType` — Price display type (Auto, Line, Candle, Bar, Column)
190191
- `volumeType` — Volume display (None, Column, Line, Area)
191192
- `indicatorTypes` — Array of indicators (0 or more)
192193
- `zoomSliderType` — Zoom pane display (defaults to match chartType)
@@ -257,7 +258,7 @@ transitionInDuration: number; // Animation duration (milliseconds)
257258

258259
### IgxFinancialChartComponent (Stock/Candlestick/OHLC)
259260
```typescript
260-
chartType: FinancialChartType; // Line, Candlestick, OHLC, Column
261+
chartType: FinancialChartType; // Auto, Line, Candle, Bar, Column
261262
itemsSource: any[];
262263
openMemberPath: string;
263264
highMemberPath: string;

0 commit comments

Comments
 (0)