Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions samples/charts/data-chart/user-annotation-layer/ReadMe.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- NOTE: do not change this file because it's auto re-generated from template: -->
<!-- https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext/samples/templates/ReadMe.md -->

This folder contains Angular application with example of Actions Built In Data Chart feature using [Toolbar](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component.
This folder contains Angular application with example of User Annotation Layer feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component.


<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
Expand All @@ -12,10 +12,10 @@ This folder contains Angular application with example of Actions Built In Data C
<a target="_blank" href="./src/app/app.component.html" rel="noopener noreferrer">
<img height="40px" style="border-radius: 0rem; max-width: 100%;" alt="View Code" src="https://github.com/IgniteUI/igniteui-blazor-examples/raw/vnext/templates/sample/images/button-code.png"/>
</a>
<a target="_blank" href="https://infragistics.com/angular-demos-dv/samples/charts/toolbar-actions-built-in-data-chart" rel="noopener noreferrer">
<a target="_blank" href="https://infragistics.com/angular-demos-dv/samples/charts/data-chart-user-annotation-layer" rel="noopener noreferrer">
<img height="40px" style="border-radius: 0rem; max-width: 100%;" alt="Run Sample" src="https://github.com/IgniteUI/igniteui-blazor-examples/raw/vnext/templates/sample/images/button-run.png"/>
</a>
<a target="_blank" href="https://codesandbox.io/s/github/IgniteUI/igniteui-angular-examples/tree/master/samples/charts/toolbar/actions-built-in-data-chart?fontsize=14&hidenavigation=1&theme=dark&view=preview&file=/src/app.component.html" rel="noopener noreferrer">
<a target="_blank" href="https://codesandbox.io/s/github/IgniteUI/igniteui-angular-examples/tree/master/samples/charts/data-chart/user-annotation-layer?fontsize=14&hidenavigation=1&theme=dark&view=preview&file=/src/app.component.html" rel="noopener noreferrer">
<img height="40px" style="border-radius: 0rem; max-width: 100%;" alt="Run Sample" src="https://github.com/IgniteUI/igniteui-blazor-examples/raw/vnext/templates/sample/images/button-sandbox.png"/>
</a>
</body>
Expand All @@ -35,7 +35,7 @@ Follow these instructions to run this example:
```
git clone https://github.com/IgniteUI/igniteui-angular-examples.git
git checkout master
cd ../samples/charts/toolbar/actions-built-in-data-chart
cd ../samples/charts/data-chart/user-annotation-layer
```
<!-- cd ./igniteui-angular-examples -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
(userAnnotationToolTipContentUpdating)="onUserAnnotationTooltipContentUpdating($event)">
<igx-category-x-axis name="xAxis" #xAxis [dataSource]="countryRenewableElectricity" label="year">
</igx-category-x-axis>
<igx-numeric-y-axis name="yAxis" #yAxis title="TWh" labelLocation="OutsideRight">
<igx-numeric-y-axis name="yAxis" #yAxis title="TWh" >
</igx-numeric-y-axis>

<igx-line-series name="lineSeries1" #lineSeries1 title="Electricity" [xAxis]="xAxis" [yAxis]="yAxis"
Expand Down