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
Copy file name to clipboardExpand all lines: kr/components/bullet-graph.md
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,17 +28,13 @@ The following sample demonstrates how setting multiple properties on the same ga
28
28
This gauge supports one scale, one set of tick marks and one set of labels. The component also has built-in support for animated transitions. This animation is easily customizable by setting the `transitionDuration` property.
29
29
The features of the bullet graph include configurable orientation and direction, configurable visual elements such as the needle, and more.
30
30
31
-
<!-- Angular, React, WebComponents -->
32
-
33
31
## Dependencies
34
32
35
33
When installing the gauge package, the core package must also be installed.
36
34
37
35
-**npm install --save igniteui-angular-core**
38
36
-**npm install --save igniteui-angular-gauges**
39
37
40
-
<!-- end: Angular, React, WebComponents -->
41
-
42
38
## Component Modules
43
39
44
40
The [`IgxBulletGraphComponent`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_gauges.igxbulletgraphcomponent.html) requires the following modules:
Copy file name to clipboardExpand all lines: kr/components/charts/chart-overview.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -327,9 +327,7 @@ If you are considering any other Angular Charts on the market, here are a few th
327
327
- We are here 24x5. Infragistics has global support that is always online. For North America, Asia Pacific, Middle East, and Europe, we are on the clock when you are!
328
328
- We have many more UI controls in Angular besides the Charts. We offer a complete Angular solution to build your applications!
329
329
330
-
<!-- Angular -->
330
+
<!---->
331
331
332
332
- Ignite UI for Angular is built on Angular for the Angular developer, with zero 3rd party dependencies. We are 100% optimized for Angular.
333
333
- We offer the world’s first, and only, end-to-end comprehensive design to code platform for UX Designers, Visual Designers, and Developers that will generate pixel-perfect Angular controls from Figma designs. With Indigo.Design, everything you craft in Figma from our Indigo Design System matches to our Ignite UI for Angular controls.
All Ignite UI for Angular charts include built-in capability to modify appearance of axis lines as well as frequency of major/minor gridlines and tickmarks that are rendered on the X-Axis and Y-Axis.
12
12
13
-
> \[!Note]
13
+
> [!Note]
14
14
> The following examples can be applied to [`IgxCategoryChartComponent`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_charts.igxcategorychartcomponent.html) as well as [`IgxFinancialChartComponent`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_charts.igxfinancialchartcomponent.html) controls.
15
15
16
16
Axis major gridlines are long lines that extend horizontally along the Y-Axis or vertically along the X-Axis from locations of axis labels, and they render through the plot area of the chart. Axis minor gridlines are lines that render between axis major gridlines.
All Ignite UI for Angular charts include options to configure many axis layout options such as location, gap, and overlap as well as having the ability to share axes and have multiple axes in the same chart. These features are demonstrated in the examples given below.
12
12
13
-
> \[!Note]
13
+
> [!Note]
14
14
> The following examples can be applied to [`IgxCategoryChartComponent`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_charts.igxcategorychartcomponent.html) as well as [`IgxFinancialChartComponent`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_charts.igxfinancialchartcomponent.html) controls.
Copy file name to clipboardExpand all lines: kr/components/charts/features/chart-navigation.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ The zoom and pan operations can also be enabled by using modifier keys by settin
52
52
53
53
## Chart Navigation through Code
54
54
55
-
> \[!Note]
55
+
> [!Note]
56
56
> Code navigation of the chart can only be used for the [`IgxDataChartComponent`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_charts.igxdatachartcomponent.html) control.
57
57
58
58
The Angular data chart provides several navigation properties that are updated each time a zoom or pan operation happens in the chart. You can also set each of these properties to zoom or pan the data chart programmatically. The following is a list of these properties:
Usage of x-axis with DateTime support is not recommended if spaces between data points, based on the amount of time span between them, are not important. Instead, ordinal/category axis should be used because it is more efficient in the way it coalesces data. Also, ordinal/category axis doesn’t perform any sorting on the data like the time-based x-axis does.
183
183
184
-
> \[!Note]
184
+
> [!Note]
185
185
> The [`IgxCategoryChartComponent`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_charts.igxcategorychartcomponent.html) already uses ordinal/category axis so there is no need to change its properties.
186
186
187
187
This code snippet shows how to ordinal/category x-axis in the [`IgxFinancialChartComponent`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_charts.igxfinancialchartcomponent.html) and [`IgxDataChartComponent`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_charts.igxdatachartcomponent.html) controls.
@@ -198,7 +198,7 @@ This code snippet shows how to ordinal/category x-axis in the [`IgxFinancialChar
198
198
199
199
By default, Angular charts will automatically calculate [`yAxisInterval`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_charts.igxcategorychartcomponent.html#yAxisInterval) based on range of your data. Therefore, you should avoid setting axis interval especially to a small value to prevent rendering of too many of axis gridlines and axis labels. Also, you might want to consider increasing [`yAxisInterval`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_charts.igxcategorychartcomponent.html#yAxisInterval) property to a larger value than the automatically calculated axis interval if you do not need many axis gridlines or axis labels.
200
200
201
-
> \[!Note]
201
+
> [!Note]
202
202
> we do not recommend setting axis minor interval as it will decrease chart performance.
203
203
204
204
This code snippet shows how to set axis major interval in the Angular charts.
Copy file name to clipboardExpand all lines: kr/components/excel-library.md
+2-6Lines changed: 2 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,14 +72,14 @@ The following is a list of the supported versions of Excel.\*\*
72
72
73
73
- Microsoft Excel 2016
74
74
75
-
> \[!Note]
75
+
> [!Note]
76
76
> The Excel Library does not support the Excel Binary Workbook (.xlsb) format at this time.
77
77
78
78
## Load and Save Workbooks
79
79
80
80
Now that the Excel Library module is imported, next step is to load a workbook.
81
81
82
-
> \[!Note]
82
+
> [!Note]
83
83
>
84
84
> In the following code snippet, an external [ExcelUtility](excel-utility.md) class is used to save and load a [`workbook`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_excel.sheet.html#workbook).
All notable changes for each version of Ignite UI for Angular are documented on this page.
12
12
13
-
<!-- Angular -->
14
-
15
-
> \[!Note]
16
-
> For changes specific to Angular LOB components, please see [Ignite UI Angular Changes](https://github.com/igniteui/igniteui-angular/blob/master/changelog.md)
17
-
18
-
<!-- end: Angular -->
13
+
> [!Note]
14
+
> For changes specific to Angular LOB components, please see [Ignite UI Angular Changes](https://github.com/IgniteUI/igniteui-angular/blob/master/CHANGELOG.md)
19
15
20
16
<divclass="divider--half"></div>
21
17
@@ -119,7 +115,7 @@ for example:
119
115
120
116
### Geographic Map
121
117
122
-
> \[!Note]
118
+
> [!Note]
123
119
> These features are CTP
124
120
125
121
- Added support for wrap around display of the map (scroll infinitely horizontally)
@@ -133,15 +129,13 @@ for example:
133
129
134
130
<divclass="divider--half"></div>
135
131
136
-
<!-- Angular, React, WebComponents -->
137
-
138
132
## **Angular 8.2.12**
139
133
140
134
- Changed Import Statements
141
135
142
136
Import statements have been simplified to use just package names instead of full paths to API classes and enums.
143
137
144
-
> \[!Note]
138
+
> [!Note]
145
139
> These breaking changes were introduce in these packages and components only:
146
140
147
141
| Affected Packages | Affected Components |
@@ -201,5 +195,3 @@ import { IgxDataChartCoreModule } from "igniteui-webcomponents-charts/ES5/igx-da
Copy file name to clipboardExpand all lines: kr/components/general-licensing.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,12 +9,12 @@ _language: kr
9
9
10
10
It is important to know all the [legal terms and conditions](https://www.infragistics.com/legal/license/igultimate-la) regarding the Ignite UI for Angular that you purchase and use.
11
11
12
-
> \[!Note]
12
+
> [!Note]
13
13
> We have updated our license terms and subscription model in second quarter of 2020.
14
14
15
15
If you are building a **commercial product** or your license [has expired](http://www.infragistics.com/renewal), you will need to [acquire a commercial license](https://www.infragistics.com/how-to-buy/product-pricing). This will enable you to use our private npm feed hosted on https://packages.infragistics.com/npm/js-licensed/ for development. There you will find the latest versions of the Ignite UI for Angular packages. If you have a valid commercial license, you can use this private feed and you will have access to the full version of Ignite UI for Angular.
16
16
17
-
> \[!Note]
17
+
> [!Note]
18
18
> Currently only the **igniteui-dockmanager** package is available in our private npm feed, but in the future we will add the other Ignite UI for Angular packages as well.
19
19
20
20
If you are building a **non-commercial** product, [contact us](https://www.infragistics.com/about-us/contact-us) and we will provide you with the appropriate license.
@@ -25,7 +25,7 @@ Npm is the most popular package manager and is also the default one for the runt
25
25
26
26
Infragistics Ignite UI for Angular is available as npm packages and you can add them as dependencies to your project in a [few easy steps](./general-getting-started.md). Choosing this approach will not require configuring npm. By installing this package you will start using the **Ignite UI for Angular Trial version** of the product.
27
27
28
-
> \[!Note]
28
+
> [!Note]
29
29
> Currently only the [igniteui-dockmanager](https://www.npmjs.com/package/igniteui-dockmanager) npm package has a trial watermark, but in the future we will add it to the other Ignite UI for Angular packages as well.
30
30
31
31
## How to setup your environment to use the private npm feed
@@ -34,7 +34,7 @@ Infragistics Ignite UI for Angular is available as npm packages and you can add
34
34
35
35
This will allow you to seamlessly use a mix of packages from the public npm registry and the Infragistics private registry. You will be asked to provide the username and the password that you use for logging into your Infragistics account. You should also provide the email that is registered to your Infragistics profile.
36
36
37
-
> \[!Note]
37
+
> [!Note]
38
38
> **npm** is disallowing the use of the **"@"** symbol inside your username as it is considered as being "not safe for the net". Because your username is actually the email that you use for your Infragistics account it always contains the symbol **"@"**. That's why you must escape this limitation by replacing the **"@"** symbol with **"!!"** (two exclamation marks). For example, if your username is **"username@example.com"** when asked about your username you should provide the following input: **"username!!example.com"**.
39
39
40
40
### Now, to log in to our private feed using npm, run the adduser command and specify a user account and password:
Copy file name to clipboardExpand all lines: kr/components/geo-map-display-heat-imagery.md
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,8 +14,6 @@ It is highly recommended that you review the [Binding Shape Files with Geo-Spati
14
14
15
15
## Angular Displaying Heat Imagery Example
16
16
17
-
<!-- Angular, React -->
18
-
19
17
```ts
20
18
//WebComponents sample not working in CodeSandbox. Remove build flag once this is fixed.
21
19
```
@@ -29,8 +27,6 @@ It is highly recommended that you review the [Binding Shape Files with Geo-Spati
29
27
30
28
<divclass="divider--half"></div>
31
29
32
-
<!-- end: Angular, React -->
33
-
34
30
When a `ShapeDataSource` loads its shape files, it converts that data into [`IgxShapefileRecord`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_core.igxshapefilerecord.html) objects. These objects can be retrieved from the `GetPointData()` method of the `ShapeDataSource` and can then be used to create a heat-map through usage of a [`IgxTileGeneratorMapImagery`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_maps.igxtilegeneratormapimagery.html) object with a [`IgxHeatTileGenerator`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_core.igxheattilegenerator.html) assigned to its `TileGenerator` property. This [`IgxTileGeneratorMapImagery`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_maps.igxtilegeneratormapimagery.html) can then be used in a geographic tile series as its `TileImagery` source.
35
31
36
32
The [`IgxHeatTileGenerator`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_core.igxheattilegenerator.html) object works such that it has three value paths, [`xValues`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_core.igxheattilegenerator.html#xValues), [`yValues`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_core.igxheattilegenerator.html#yValues) and [`values`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_core.igxheattilegenerator.html#values). As an example of how these could be used, in the case of a shape file that has information about population, you could consider the [`xValues`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_core.igxheattilegenerator.html#xValues) to be longitude, [`yValues`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_core.igxheattilegenerator.html#yValues) to be latitude, and [`values`]({environment:dvApiBaseUrl}/products/ignite-ui-angular/api/docs/typescript/latest/classes/igniteui_angular_core.igxheattilegenerator.html#values) to be the population data. Each of these properties takes a `number[]`.
0 commit comments