diff --git a/README.md b/README.md index 01b3d34d0..129d2eca7 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ # Examples of Ignite UI for Angular Components -This repository contains over 400 examples on how to use [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-Angular/Angular/components/general-getting-started.html) components: +This repository contains an Angular browser app and 500+ examples on how to use [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-Angular/Angular/components/general-getting-started.html) components: - Charts: [Area](https://www.infragistics.com/products/ignite-ui-angular/angular/components/charts/types/area-chart), @@ -32,6 +32,12 @@ This repository contains over 400 examples on how to use [Ignite UI for Angular] [Linear Gauge](https://www.infragistics.com/products/ignite-ui-angular/angular/components/linear-gauge.html), [Radial Gauges](https://www.infragistics.com/products/ignite-ui-angular/angular/components/radial-gauge.html) +You can run each sample project individually from the ./samples folder or you can browse all samples in one website from the ./browser folder. + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Preview You can preview and browse all samples in this repository by opening our [Angular Samples Browser](https://www.infragistics.com/angular-demos-dv/samples/). Alternatively, you you can view these samples with detailed information in our [Angular Help Documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started). @@ -49,13 +55,17 @@ To set up this project locally, clone this repository: git clone https://github.com/IgniteUI/igniteui-angular-examples.git ``` + ## Running Individual Sample +- check out the **master** branch + - in VS Code, open a folder with existing sample, e.g. ``` ./samples/charts/category-chart/axis-options/ ``` -- type `npm install` command in terminal window +- type `npm install --legacy-peer-deps` command in terminal window + - type `npm run start` command in terminal window - Wait until the build is completed and then open [http://localhost:4200](http://localhost:4200) in your browser. @@ -65,11 +75,18 @@ At this point, you should see a website hosted example of [Ignite UI for Angular ## Running All Samples +- check out the **master** branch + - open VS Code as Administrator -- open the folder that contains this repository, e.g. `C:\GitHub\igniteui-angular-examples\` + +- open the folder that contains this repository, e.g. +```CMD +C:\GitHub\igniteui-angular-examples\ +``` + - select **View** - **Terminal** menu item -- type `npm install` command in terminal window +- type `npm install --legacy-peer-deps` command in terminal window This will install required packages and [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started) packages @@ -108,7 +125,7 @@ Wait until the build is completed and then open [http://localhost:4200](http://l - rename class to the name of .tsx file -- type `npm install` command in terminal window +- type `npm install --legacy-peer-deps` command in terminal window - type `npm run start` command in terminal window diff --git a/browser/README.md b/browser/README.md index 999a29eb3..a0212796c 100644 --- a/browser/README.md +++ b/browser/README.md @@ -9,22 +9,31 @@ # Browser App for Angular Components -This browser application allows you to browse all samples of the [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-Angular/Angular/components/general-getting-started.html) in a single website. +The **browser** folder contains an Angular app for browsing 500+ examples of [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-Angular/Angular/components/general-getting-started.html) components. -## Setup -To setup the project run: -``` -npm install -``` +## Branches -To start the dev server (including IE support) run: +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. -``` -npm run start -``` -## Running with the DocFX project +## Instructions + +Follow these instructions to run and browse all samples: + +- open VS Code as Administrator + +- open the folder that contains this repository, e.g. `C:\GitHub\igniteui-angular-examples\` + +- select **View** - **Terminal** menu item + +- type `npm install --legacy-peer-deps` command in terminal window + +This will install required packages and [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started) packages + +- type `npm run start` command in terminal window to start this application locally + +Note this application copies all individually sample projects from [./samples](./samples) to [./browser/src](./browser/src) folder when it is about to start running. Therefore, any changes to [./browser/src](./browser/src) will be overridden on consecutive run of the application. + +Wait until the build is completed and then open [http://localhost:4200](http://localhost:4200) in your browser. You should see a website with navigation menu for browning all samples in this repository. -In order to combine the execution of both [DocFX](https://github.com/IgniteUI/igniteui-docfx) and Ignite UI Angular Samples projects, use `npm run start`. -After starting both projects you will see the embed samples into the DocFX site builder, under `localhost:port` hostname. diff --git a/samples/README.md b/samples/README.md index a0e586a93..6a069e504 100644 --- a/samples/README.md +++ b/samples/README.md @@ -6,7 +6,7 @@ # Individual Samples of Angular Components -In this folder, you will find individual **samples** on how to use [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-Angular/Angular/components/general-getting-started.html) components: +The **samples** folder contains individual examples on how to use [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-Angular/Angular/components/general-getting-started.html) components: - Charts: [Area](https://www.infragistics.com/products/ignite-ui-angular/angular/components/charts/types/area-chart), @@ -33,14 +33,20 @@ In this folder, you will find individual **samples** on how to use [Ignite UI fo [Radial Gauges](https://www.infragistics.com/products/ignite-ui-angular/angular/components/radial-gauge.html) -## Setup +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run individual sample: - in VS Code, open a folder with existing sample, e.g. ``` ./samples/charts/category-chart/axis-options/ ``` -- type `npm install` command in terminal window +- type `npm install --legacy-peer-deps` command in terminal window - type `npm run start` command in terminal window diff --git a/samples/charts/category-chart/annotations-all/ReadMe.md b/samples/charts/category-chart/annotations-all/ReadMe.md index a1bd08c6b..d11650d82 100644 --- a/samples/charts/category-chart/annotations-all/ReadMe.md +++ b/samples/charts/category-chart/annotations-all/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations All feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/annotations-all ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/annotations-callouts/ReadMe.md b/samples/charts/category-chart/annotations-callouts/ReadMe.md index d2a508d9f..9db592bc2 100644 --- a/samples/charts/category-chart/annotations-callouts/ReadMe.md +++ b/samples/charts/category-chart/annotations-callouts/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations Callouts fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/annotations-callouts ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/annotations-crosshairs/ReadMe.md b/samples/charts/category-chart/annotations-crosshairs/ReadMe.md index bdbe356ed..808eb8453 100644 --- a/samples/charts/category-chart/annotations-crosshairs/ReadMe.md +++ b/samples/charts/category-chart/annotations-crosshairs/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations Crosshairs +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/annotations-crosshairs ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/annotations-custom/ReadMe.md b/samples/charts/category-chart/annotations-custom/ReadMe.md index f68e6e838..f65277f19 100644 --- a/samples/charts/category-chart/annotations-custom/ReadMe.md +++ b/samples/charts/category-chart/annotations-custom/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations Custom feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/annotations-custom ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/annotations-final-value/ReadMe.md b/samples/charts/category-chart/annotations-final-value/ReadMe.md index ca57ee570..b74c11fbf 100644 --- a/samples/charts/category-chart/annotations-final-value/ReadMe.md +++ b/samples/charts/category-chart/annotations-final-value/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations Final Value +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/annotations-final-value ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/annotations-highlighting/ReadMe.md b/samples/charts/category-chart/annotations-highlighting/ReadMe.md index 5bf4de9d4..b8ebfd56c 100644 --- a/samples/charts/category-chart/annotations-highlighting/ReadMe.md +++ b/samples/charts/category-chart/annotations-highlighting/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations Highlightin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/annotations-highlighting ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/annotations/ReadMe.md b/samples/charts/category-chart/annotations/ReadMe.md index de9b23a7c..42512aae8 100644 --- a/samples/charts/category-chart/annotations/ReadMe.md +++ b/samples/charts/category-chart/annotations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/annotations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/area-chart-multiple-sources/ReadMe.md b/samples/charts/category-chart/area-chart-multiple-sources/ReadMe.md index 40d436153..85b6856c4 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/area-chart-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Area Chart Multiple Sou +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/area-chart-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/area-chart-single-source/ReadMe.md b/samples/charts/category-chart/area-chart-single-source/ReadMe.md index d87a155e5..d90229538 100644 --- a/samples/charts/category-chart/area-chart-single-source/ReadMe.md +++ b/samples/charts/category-chart/area-chart-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Area Chart Single Sourc +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/area-chart-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/area-chart-styling/ReadMe.md b/samples/charts/category-chart/area-chart-styling/ReadMe.md index 4eac521cb..e4947b06e 100644 --- a/samples/charts/category-chart/area-chart-styling/ReadMe.md +++ b/samples/charts/category-chart/area-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Area Chart Styling feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/area-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-gap/ReadMe.md b/samples/charts/category-chart/axis-gap/ReadMe.md index 3016380c5..8bd695fc7 100644 --- a/samples/charts/category-chart/axis-gap/ReadMe.md +++ b/samples/charts/category-chart/axis-gap/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Gap feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-gap ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-gridlines/ReadMe.md b/samples/charts/category-chart/axis-gridlines/ReadMe.md index 575eac08c..380b9b78f 100644 --- a/samples/charts/category-chart/axis-gridlines/ReadMe.md +++ b/samples/charts/category-chart/axis-gridlines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Gridlines feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-gridlines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-inverted/ReadMe.md b/samples/charts/category-chart/axis-inverted/ReadMe.md index 348582600..c8be0e37c 100644 --- a/samples/charts/category-chart/axis-inverted/ReadMe.md +++ b/samples/charts/category-chart/axis-inverted/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Inverted feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-inverted ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-labels/ReadMe.md b/samples/charts/category-chart/axis-labels/ReadMe.md index 688585ac5..0cbfb7214 100644 --- a/samples/charts/category-chart/axis-labels/ReadMe.md +++ b/samples/charts/category-chart/axis-labels/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Labels feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-labels ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-locations/ReadMe.md b/samples/charts/category-chart/axis-locations/ReadMe.md index 4dcf8b687..62f3e3d52 100644 --- a/samples/charts/category-chart/axis-locations/ReadMe.md +++ b/samples/charts/category-chart/axis-locations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Locations feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-locations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-options/ReadMe.md b/samples/charts/category-chart/axis-options/ReadMe.md index 90ef9c2df..052b1a886 100644 --- a/samples/charts/category-chart/axis-options/ReadMe.md +++ b/samples/charts/category-chart/axis-options/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Options feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-options ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-overlap/ReadMe.md b/samples/charts/category-chart/axis-overlap/ReadMe.md index 7640a37a7..3cc0cb611 100644 --- a/samples/charts/category-chart/axis-overlap/ReadMe.md +++ b/samples/charts/category-chart/axis-overlap/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Overlap feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-overlap ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-range/ReadMe.md b/samples/charts/category-chart/axis-range/ReadMe.md index d80fd6ff5..dcbb8f5ed 100644 --- a/samples/charts/category-chart/axis-range/ReadMe.md +++ b/samples/charts/category-chart/axis-range/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Range feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-range ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-tickmarks/ReadMe.md b/samples/charts/category-chart/axis-tickmarks/ReadMe.md index 7f818aa78..dbe07e39a 100644 --- a/samples/charts/category-chart/axis-tickmarks/ReadMe.md +++ b/samples/charts/category-chart/axis-tickmarks/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Tickmarks feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-tickmarks ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-titles/ReadMe.md b/samples/charts/category-chart/axis-titles/ReadMe.md index 9fb5bedc4..a9a2e9847 100644 --- a/samples/charts/category-chart/axis-titles/ReadMe.md +++ b/samples/charts/category-chart/axis-titles/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Titles feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-titles ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/chart-highlight-filter/ReadMe.md b/samples/charts/category-chart/chart-highlight-filter/ReadMe.md index 58a2a42ad..4d8f398b4 100644 --- a/samples/charts/category-chart/chart-highlight-filter/ReadMe.md +++ b/samples/charts/category-chart/chart-highlight-filter/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Highlight Filter +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/chart-highlight-filter ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/column-chart-multiple-sources/ReadMe.md b/samples/charts/category-chart/column-chart-multiple-sources/ReadMe.md index 200b63cca..050b52f91 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/column-chart-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Column Chart Multiple S +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/column-chart-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/column-chart-single-source/ReadMe.md b/samples/charts/category-chart/column-chart-single-source/ReadMe.md index 6bb93afea..740dc0fbc 100644 --- a/samples/charts/category-chart/column-chart-single-source/ReadMe.md +++ b/samples/charts/category-chart/column-chart-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Column Chart Single Sou +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/column-chart-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/column-chart-styling/ReadMe.md b/samples/charts/category-chart/column-chart-styling/ReadMe.md index 3d8408fc0..5c4a299f6 100644 --- a/samples/charts/category-chart/column-chart-styling/ReadMe.md +++ b/samples/charts/category-chart/column-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Column Chart Styling fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/column-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/column-chart-with-highlighting/ReadMe.md b/samples/charts/category-chart/column-chart-with-highlighting/ReadMe.md index dd8120e10..92791381b 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/ReadMe.md +++ b/samples/charts/category-chart/column-chart-with-highlighting/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Column Chart With Highl +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/column-chart-with-highlighting ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/column-chart-with-tooltips/ReadMe.md b/samples/charts/category-chart/column-chart-with-tooltips/ReadMe.md index 1bdb2002c..83b7e23ab 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/ReadMe.md +++ b/samples/charts/category-chart/column-chart-with-tooltips/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Column Chart With Toolt +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/column-chart-with-tooltips ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/custom-selection/ReadMe.md b/samples/charts/category-chart/custom-selection/ReadMe.md index 0c24d8b88..ea18cb3ec 100644 --- a/samples/charts/category-chart/custom-selection/ReadMe.md +++ b/samples/charts/category-chart/custom-selection/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Custom Selection featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/custom-selection ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/data-aggregations/ReadMe.md b/samples/charts/category-chart/data-aggregations/ReadMe.md index ac3cbab30..d0352ff81 100644 --- a/samples/charts/category-chart/data-aggregations/ReadMe.md +++ b/samples/charts/category-chart/data-aggregations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Aggregations featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/data-aggregations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/ReadMe.md b/samples/charts/category-chart/data-legend-formatting-decimals/ReadMe.md index 5b63b4775..104dc9f8b 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/ReadMe.md +++ b/samples/charts/category-chart/data-legend-formatting-decimals/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Legend Formatting +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/data-legend-formatting-decimals ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/data-legend/ReadMe.md b/samples/charts/category-chart/data-legend/ReadMe.md index 3f608160e..4dab094a2 100644 --- a/samples/charts/category-chart/data-legend/ReadMe.md +++ b/samples/charts/category-chart/data-legend/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Legend feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/data-legend ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/ReadMe.md b/samples/charts/category-chart/data-tooltip-formatting-decimals/ReadMe.md index fdbc65735..028ba5d00 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/ReadMe.md +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Tooltip Formatting +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/data-tooltip-formatting-decimals ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/data-tooltip-positioning/ReadMe.md b/samples/charts/category-chart/data-tooltip-positioning/ReadMe.md index 27c5c1ede..b684dd1d3 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/ReadMe.md +++ b/samples/charts/category-chart/data-tooltip-positioning/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Tooltip Positionin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/data-tooltip-positioning ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/data-tooltip/ReadMe.md b/samples/charts/category-chart/data-tooltip/ReadMe.md index cd5b7572d..72bfd17fb 100644 --- a/samples/charts/category-chart/data-tooltip/ReadMe.md +++ b/samples/charts/category-chart/data-tooltip/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Tooltip feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/data-tooltip ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/format-specifiers/ReadMe.md b/samples/charts/category-chart/format-specifiers/ReadMe.md index 2744acb35..1e4844f40 100644 --- a/samples/charts/category-chart/format-specifiers/ReadMe.md +++ b/samples/charts/category-chart/format-specifiers/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Format Specifiers featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/format-specifiers ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/high-frequency/ReadMe.md b/samples/charts/category-chart/high-frequency/ReadMe.md index 6ac30b630..7bc08512e 100644 --- a/samples/charts/category-chart/high-frequency/ReadMe.md +++ b/samples/charts/category-chart/high-frequency/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of High Frequency feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/high-frequency ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/high-volume/ReadMe.md b/samples/charts/category-chart/high-volume/ReadMe.md index 59a384fd3..7aa890603 100644 --- a/samples/charts/category-chart/high-volume/ReadMe.md +++ b/samples/charts/category-chart/high-volume/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of High Volume feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/high-volume ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/highlighting/ReadMe.md b/samples/charts/category-chart/highlighting/ReadMe.md index a67b4c29d..320a3b5d7 100644 --- a/samples/charts/category-chart/highlighting/ReadMe.md +++ b/samples/charts/category-chart/highlighting/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Highlighting feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/highlighting ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/line-chart-multiple-sources/ReadMe.md b/samples/charts/category-chart/line-chart-multiple-sources/ReadMe.md index 80a5483a3..221cb8205 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/line-chart-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Line Chart Multiple Sou +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/line-chart-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/line-chart-single-source/ReadMe.md b/samples/charts/category-chart/line-chart-single-source/ReadMe.md index 7d4cb48f8..7070cc1eb 100644 --- a/samples/charts/category-chart/line-chart-single-source/ReadMe.md +++ b/samples/charts/category-chart/line-chart-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Line Chart Single Sourc +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/line-chart-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/line-chart-styling/ReadMe.md b/samples/charts/category-chart/line-chart-styling/ReadMe.md index 2af51a324..12a84b127 100644 --- a/samples/charts/category-chart/line-chart-styling/ReadMe.md +++ b/samples/charts/category-chart/line-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Line Chart Styling feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/line-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/line-chart-with-animations/ReadMe.md b/samples/charts/category-chart/line-chart-with-animations/ReadMe.md index 0774ee1f7..2cadbffd9 100644 --- a/samples/charts/category-chart/line-chart-with-animations/ReadMe.md +++ b/samples/charts/category-chart/line-chart-with-animations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Line Chart With Animati +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/line-chart-with-animations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/line-chart-with-annotations/ReadMe.md b/samples/charts/category-chart/line-chart-with-annotations/ReadMe.md index b78d472e9..bff164946 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/ReadMe.md +++ b/samples/charts/category-chart/line-chart-with-annotations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Line Chart With Annotat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/line-chart-with-annotations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/line-chart-with-legend/ReadMe.md b/samples/charts/category-chart/line-chart-with-legend/ReadMe.md index 611633358..87cd61c9d 100644 --- a/samples/charts/category-chart/line-chart-with-legend/ReadMe.md +++ b/samples/charts/category-chart/line-chart-with-legend/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Line Chart With Legend +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/line-chart-with-legend ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/marker-options/ReadMe.md b/samples/charts/category-chart/marker-options/ReadMe.md index c1c19c5cb..cdc8d4cc8 100644 --- a/samples/charts/category-chart/marker-options/ReadMe.md +++ b/samples/charts/category-chart/marker-options/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Marker Options feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/marker-options ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/marker-templates/ReadMe.md b/samples/charts/category-chart/marker-templates/ReadMe.md index 22d0bd884..c34b44f46 100644 --- a/samples/charts/category-chart/marker-templates/ReadMe.md +++ b/samples/charts/category-chart/marker-templates/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Marker Templates featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/marker-templates ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/overview/ReadMe.md b/samples/charts/category-chart/overview/ReadMe.md index 32830cdf7..9a9e681f6 100644 --- a/samples/charts/category-chart/overview/ReadMe.md +++ b/samples/charts/category-chart/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/point-chart-multiple-sources/ReadMe.md b/samples/charts/category-chart/point-chart-multiple-sources/ReadMe.md index 11042d3b6..46fb11501 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/point-chart-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Point Chart Multiple So +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/point-chart-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/point-chart-single-source/ReadMe.md b/samples/charts/category-chart/point-chart-single-source/ReadMe.md index 0de9d3945..fc878ac04 100644 --- a/samples/charts/category-chart/point-chart-single-source/ReadMe.md +++ b/samples/charts/category-chart/point-chart-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Point Chart Single Sour +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/point-chart-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/point-chart-styling/ReadMe.md b/samples/charts/category-chart/point-chart-styling/ReadMe.md index a3ca7a8a1..46549be59 100644 --- a/samples/charts/category-chart/point-chart-styling/ReadMe.md +++ b/samples/charts/category-chart/point-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Point Chart Styling fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/point-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/spline-area-multiple-sources/ReadMe.md b/samples/charts/category-chart/spline-area-multiple-sources/ReadMe.md index 442a01d35..342c947d8 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/spline-area-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Spline Area Multiple So +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/spline-area-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/spline-area-single-source/ReadMe.md b/samples/charts/category-chart/spline-area-single-source/ReadMe.md index e9c85b682..2bec65d28 100644 --- a/samples/charts/category-chart/spline-area-single-source/ReadMe.md +++ b/samples/charts/category-chart/spline-area-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Spline Area Single Sour +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/spline-area-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/spline-area-styling/ReadMe.md b/samples/charts/category-chart/spline-area-styling/ReadMe.md index fd589ca82..078e45daa 100644 --- a/samples/charts/category-chart/spline-area-styling/ReadMe.md +++ b/samples/charts/category-chart/spline-area-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Spline Area Styling fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/spline-area-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/spline-multiple-sources/ReadMe.md b/samples/charts/category-chart/spline-multiple-sources/ReadMe.md index 53037ecba..e5fb9265b 100644 --- a/samples/charts/category-chart/spline-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/spline-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Spline Multiple Sources +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/spline-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/spline-single-source/ReadMe.md b/samples/charts/category-chart/spline-single-source/ReadMe.md index 185486822..ba3b2f0d6 100644 --- a/samples/charts/category-chart/spline-single-source/ReadMe.md +++ b/samples/charts/category-chart/spline-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Spline Single Source fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/spline-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/spline-styling/ReadMe.md b/samples/charts/category-chart/spline-styling/ReadMe.md index 97e754c2d..12d6b87bc 100644 --- a/samples/charts/category-chart/spline-styling/ReadMe.md +++ b/samples/charts/category-chart/spline-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Spline Styling feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/spline-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/stack-columns/ReadMe.md b/samples/charts/category-chart/stack-columns/ReadMe.md index cec5b5aee..d1e3b3e2f 100644 --- a/samples/charts/category-chart/stack-columns/ReadMe.md +++ b/samples/charts/category-chart/stack-columns/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stack Columns feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/stack-columns ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/step-area-multiple-sources/ReadMe.md b/samples/charts/category-chart/step-area-multiple-sources/ReadMe.md index b47ef0a13..54b824347 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/step-area-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Step Area Multiple Sour +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/step-area-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/step-area-single-source/ReadMe.md b/samples/charts/category-chart/step-area-single-source/ReadMe.md index a6f780ce1..30a25360c 100644 --- a/samples/charts/category-chart/step-area-single-source/ReadMe.md +++ b/samples/charts/category-chart/step-area-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Step Area Single Source +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/step-area-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/step-area-styling/ReadMe.md b/samples/charts/category-chart/step-area-styling/ReadMe.md index 34e34fd26..27d543e2c 100644 --- a/samples/charts/category-chart/step-area-styling/ReadMe.md +++ b/samples/charts/category-chart/step-area-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Step Area Styling featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/step-area-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/step-line-multiple-sources/ReadMe.md b/samples/charts/category-chart/step-line-multiple-sources/ReadMe.md index af9fe2931..3e79f6d5a 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/step-line-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Step Line Multiple Sour +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/step-line-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/step-line-single-source/ReadMe.md b/samples/charts/category-chart/step-line-single-source/ReadMe.md index f9829fc36..f74403b84 100644 --- a/samples/charts/category-chart/step-line-single-source/ReadMe.md +++ b/samples/charts/category-chart/step-line-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Step Line Single Source +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/step-line-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/step-line-styling/ReadMe.md b/samples/charts/category-chart/step-line-styling/ReadMe.md index 8688060c5..a8eccf4f3 100644 --- a/samples/charts/category-chart/step-line-styling/ReadMe.md +++ b/samples/charts/category-chart/step-line-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Step Line Styling featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/step-line-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/tooltip-template/ReadMe.md b/samples/charts/category-chart/tooltip-template/ReadMe.md index 5bb885b91..c6f591c77 100644 --- a/samples/charts/category-chart/tooltip-template/ReadMe.md +++ b/samples/charts/category-chart/tooltip-template/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tooltip Template featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/tooltip-template ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/tooltip-types/ReadMe.md b/samples/charts/category-chart/tooltip-types/ReadMe.md index deb1973a8..f7ff04157 100644 --- a/samples/charts/category-chart/tooltip-types/ReadMe.md +++ b/samples/charts/category-chart/tooltip-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tooltip Types feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/tooltip-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/trendline/ReadMe.md b/samples/charts/category-chart/trendline/ReadMe.md index a8639604f..1ef86211a 100644 --- a/samples/charts/category-chart/trendline/ReadMe.md +++ b/samples/charts/category-chart/trendline/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Trendline feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/trendline ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/value-lines/ReadMe.md b/samples/charts/category-chart/value-lines/ReadMe.md index 211a80623..414d576ee 100644 --- a/samples/charts/category-chart/value-lines/ReadMe.md +++ b/samples/charts/category-chart/value-lines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Value Lines feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/value-lines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/annotations-custom/ReadMe.md b/samples/charts/data-chart/annotations-custom/ReadMe.md index fb32e925e..aed0ea381 100644 --- a/samples/charts/data-chart/annotations-custom/ReadMe.md +++ b/samples/charts/data-chart/annotations-custom/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations Custom feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/annotations-custom ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/ReadMe.md b/samples/charts/data-chart/axis-annotations-corner-radius/ReadMe.md index 6049cb66d..54a9fab98 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/ReadMe.md +++ b/samples/charts/data-chart/axis-annotations-corner-radius/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Annotations Corner +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-annotations-corner-radius ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-annotations/ReadMe.md b/samples/charts/data-chart/axis-annotations/ReadMe.md index c68d0cbe5..b31b69142 100644 --- a/samples/charts/data-chart/axis-annotations/ReadMe.md +++ b/samples/charts/data-chart/axis-annotations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Annotations featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-annotations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-crossing/ReadMe.md b/samples/charts/data-chart/axis-crossing/ReadMe.md index 1c0c3713c..49703e0d9 100644 --- a/samples/charts/data-chart/axis-crossing/ReadMe.md +++ b/samples/charts/data-chart/axis-crossing/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Crossing feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-crossing ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-label-rotation/ReadMe.md b/samples/charts/data-chart/axis-label-rotation/ReadMe.md index b49de03e6..b6361a3b4 100644 --- a/samples/charts/data-chart/axis-label-rotation/ReadMe.md +++ b/samples/charts/data-chart/axis-label-rotation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Label Rotation fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-label-rotation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-locations/ReadMe.md b/samples/charts/data-chart/axis-locations/ReadMe.md index f46127e00..c44be32de 100644 --- a/samples/charts/data-chart/axis-locations/ReadMe.md +++ b/samples/charts/data-chart/axis-locations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Locations feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-locations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-min-max-gap/ReadMe.md b/samples/charts/data-chart/axis-min-max-gap/ReadMe.md index a51a380ac..f45cb2402 100644 --- a/samples/charts/data-chart/axis-min-max-gap/ReadMe.md +++ b/samples/charts/data-chart/axis-min-max-gap/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Min Max Gap featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-min-max-gap ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-settings/ReadMe.md b/samples/charts/data-chart/axis-settings/ReadMe.md index b20f03828..6985829b5 100644 --- a/samples/charts/data-chart/axis-settings/ReadMe.md +++ b/samples/charts/data-chart/axis-settings/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Settings feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-settings ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-sharing/ReadMe.md b/samples/charts/data-chart/axis-sharing/ReadMe.md index 9910c89e3..5aff29774 100644 --- a/samples/charts/data-chart/axis-sharing/ReadMe.md +++ b/samples/charts/data-chart/axis-sharing/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Sharing feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-sharing ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-types/ReadMe.md b/samples/charts/data-chart/axis-types/ReadMe.md index f8b29537b..f02b129e6 100644 --- a/samples/charts/data-chart/axis-types/ReadMe.md +++ b/samples/charts/data-chart/axis-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Types feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/ReadMe.md b/samples/charts/data-chart/bar-chart-multiple-sources/ReadMe.md index 4b494ad11..21b330a1f 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/ReadMe.md +++ b/samples/charts/data-chart/bar-chart-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Bar Chart Multiple Sour +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/bar-chart-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/bar-chart-overlapping/ReadMe.md b/samples/charts/data-chart/bar-chart-overlapping/ReadMe.md index a893f72e4..d47ef6632 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/ReadMe.md +++ b/samples/charts/data-chart/bar-chart-overlapping/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Bar Chart Overlapping f +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/bar-chart-overlapping ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/bar-chart-single-source/ReadMe.md b/samples/charts/data-chart/bar-chart-single-source/ReadMe.md index cf40fb86a..4cac5a02c 100644 --- a/samples/charts/data-chart/bar-chart-single-source/ReadMe.md +++ b/samples/charts/data-chart/bar-chart-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Bar Chart Single Source +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/bar-chart-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/bar-chart-styling/ReadMe.md b/samples/charts/data-chart/bar-chart-styling/ReadMe.md index fa56cceac..328cd8be9 100644 --- a/samples/charts/data-chart/bar-chart-styling/ReadMe.md +++ b/samples/charts/data-chart/bar-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Bar Chart Styling featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/bar-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/callout-layer-styling/ReadMe.md b/samples/charts/data-chart/callout-layer-styling/ReadMe.md index bea3e19e2..dbe8be539 100644 --- a/samples/charts/data-chart/callout-layer-styling/ReadMe.md +++ b/samples/charts/data-chart/callout-layer-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Callout Layer Styling f +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/callout-layer-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md b/samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md index 118dad9f9..d609c4474 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Highlight Filter +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-highlight-filter-datasource ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md b/samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md index a21af7c85..daa7691b0 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Highlight Filter +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-highlight-filter-multiple-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-highlight-filter/ReadMe.md b/samples/charts/data-chart/chart-highlight-filter/ReadMe.md index 328b16f9c..7af832bfc 100644 --- a/samples/charts/data-chart/chart-highlight-filter/ReadMe.md +++ b/samples/charts/data-chart/chart-highlight-filter/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Highlight Filter +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-highlight-filter ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-navigation/ReadMe.md b/samples/charts/data-chart/chart-navigation/ReadMe.md index 69d20f9c6..603d88609 100644 --- a/samples/charts/data-chart/chart-navigation/ReadMe.md +++ b/samples/charts/data-chart/chart-navigation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Navigation featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-navigation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-overview/ReadMe.md b/samples/charts/data-chart/chart-overview/ReadMe.md index a49489cd8..c1a236cea 100644 --- a/samples/charts/data-chart/chart-overview/ReadMe.md +++ b/samples/charts/data-chart/chart-overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Overview feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-performance/ReadMe.md b/samples/charts/data-chart/chart-performance/ReadMe.md index 54716fbae..af5844b45 100644 --- a/samples/charts/data-chart/chart-performance/ReadMe.md +++ b/samples/charts/data-chart/chart-performance/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Performance featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-performance ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-synchronization/ReadMe.md b/samples/charts/data-chart/chart-synchronization/ReadMe.md index 841380c14..60151bcac 100644 --- a/samples/charts/data-chart/chart-synchronization/ReadMe.md +++ b/samples/charts/data-chart/chart-synchronization/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Synchronization f +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-synchronization ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-titles/ReadMe.md b/samples/charts/data-chart/chart-titles/ReadMe.md index b917b3a69..eb9e62ea1 100644 --- a/samples/charts/data-chart/chart-titles/ReadMe.md +++ b/samples/charts/data-chart/chart-titles/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Titles feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-titles ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/column-chart-styling/ReadMe.md b/samples/charts/data-chart/column-chart-styling/ReadMe.md index ef65c5bd5..663bd3dc8 100644 --- a/samples/charts/data-chart/column-chart-styling/ReadMe.md +++ b/samples/charts/data-chart/column-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Column Chart Styling fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/column-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/composite-chart/ReadMe.md b/samples/charts/data-chart/composite-chart/ReadMe.md index 79d942922..015d1c6ef 100644 --- a/samples/charts/data-chart/composite-chart/ReadMe.md +++ b/samples/charts/data-chart/composite-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Composite Chart feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/composite-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/crosshair-layer-styling/ReadMe.md b/samples/charts/data-chart/crosshair-layer-styling/ReadMe.md index a5fa5dd94..dd5b5f015 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/ReadMe.md +++ b/samples/charts/data-chart/crosshair-layer-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Crosshair Layer Styling +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/crosshair-layer-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/custom-drawing-annotations/ReadMe.md b/samples/charts/data-chart/custom-drawing-annotations/ReadMe.md index 9b3d83b3e..87dc3f163 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/ReadMe.md +++ b/samples/charts/data-chart/custom-drawing-annotations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Custom Drawing Annotati +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/custom-drawing-annotations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/custom-editing-data/ReadMe.md b/samples/charts/data-chart/custom-editing-data/ReadMe.md index 16ba35451..d51ea517a 100644 --- a/samples/charts/data-chart/custom-editing-data/ReadMe.md +++ b/samples/charts/data-chart/custom-editing-data/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Custom Editing Data fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/custom-editing-data ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/dash-array-axes/ReadMe.md b/samples/charts/data-chart/dash-array-axes/ReadMe.md index dd578148c..b946929c4 100644 --- a/samples/charts/data-chart/dash-array-axes/ReadMe.md +++ b/samples/charts/data-chart/dash-array-axes/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Dash Array Axes feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/dash-array-axes ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/dash-array-series/ReadMe.md b/samples/charts/data-chart/dash-array-series/ReadMe.md index f24ae21f9..44c7a4aee 100644 --- a/samples/charts/data-chart/dash-array-series/ReadMe.md +++ b/samples/charts/data-chart/dash-array-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Dash Array Series featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/dash-array-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/dash-array-tickmarks/ReadMe.md b/samples/charts/data-chart/dash-array-tickmarks/ReadMe.md index 83c7b834e..7543bb4a6 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/ReadMe.md +++ b/samples/charts/data-chart/dash-array-tickmarks/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Dash Array Tickmarks fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/dash-array-tickmarks ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/dash-array-trendline/ReadMe.md b/samples/charts/data-chart/dash-array-trendline/ReadMe.md index 86b05a612..a507f521c 100644 --- a/samples/charts/data-chart/dash-array-trendline/ReadMe.md +++ b/samples/charts/data-chart/dash-array-trendline/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Dash Array Trendline fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/dash-array-trendline ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/data-legend/ReadMe.md b/samples/charts/data-chart/data-legend/ReadMe.md index d15ef9199..b20f52263 100644 --- a/samples/charts/data-chart/data-legend/ReadMe.md +++ b/samples/charts/data-chart/data-legend/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Legend feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/data-legend ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/data-tooltip/ReadMe.md b/samples/charts/data-chart/data-tooltip/ReadMe.md index 1c3bb84e0..52a83fd19 100644 --- a/samples/charts/data-chart/data-tooltip/ReadMe.md +++ b/samples/charts/data-chart/data-tooltip/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Tooltip feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/data-tooltip ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/final-value-layer-styling/ReadMe.md b/samples/charts/data-chart/final-value-layer-styling/ReadMe.md index 63ffdff06..ebb0cfd60 100644 --- a/samples/charts/data-chart/final-value-layer-styling/ReadMe.md +++ b/samples/charts/data-chart/final-value-layer-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Final Value Layer Styli +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/final-value-layer-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/financial-price-series/ReadMe.md b/samples/charts/data-chart/financial-price-series/ReadMe.md index f1d943079..2b1e986f2 100644 --- a/samples/charts/data-chart/financial-price-series/ReadMe.md +++ b/samples/charts/data-chart/financial-price-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Financial Price Series +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/financial-price-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/format-specifiers/ReadMe.md b/samples/charts/data-chart/format-specifiers/ReadMe.md index 49bb2000c..5f7c9d4ff 100644 --- a/samples/charts/data-chart/format-specifiers/ReadMe.md +++ b/samples/charts/data-chart/format-specifiers/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Format Specifiers featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/format-specifiers ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/legends/ReadMe.md b/samples/charts/data-chart/legends/ReadMe.md index 72aeeb7ad..8f1525d00 100644 --- a/samples/charts/data-chart/legends/ReadMe.md +++ b/samples/charts/data-chart/legends/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Legends feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/legends ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/polar-area-chart-styling/ReadMe.md b/samples/charts/data-chart/polar-area-chart-styling/ReadMe.md index 1b2427e46..e64722e84 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/ReadMe.md +++ b/samples/charts/data-chart/polar-area-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Polar Area Chart Stylin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/polar-area-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/polar-area-chart/ReadMe.md b/samples/charts/data-chart/polar-area-chart/ReadMe.md index 974fb1565..f402907a0 100644 --- a/samples/charts/data-chart/polar-area-chart/ReadMe.md +++ b/samples/charts/data-chart/polar-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Polar Area Chart featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/polar-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/polar-chart-types/ReadMe.md b/samples/charts/data-chart/polar-chart-types/ReadMe.md index cb5aab3e0..78c82547c 100644 --- a/samples/charts/data-chart/polar-chart-types/ReadMe.md +++ b/samples/charts/data-chart/polar-chart-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Polar Chart Types featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/polar-chart-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/polar-line-chart/ReadMe.md b/samples/charts/data-chart/polar-line-chart/ReadMe.md index ef5f0edc1..aaf275ba5 100644 --- a/samples/charts/data-chart/polar-line-chart/ReadMe.md +++ b/samples/charts/data-chart/polar-line-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Polar Line Chart featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/polar-line-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/polar-scatter-chart/ReadMe.md b/samples/charts/data-chart/polar-scatter-chart/ReadMe.md index 51f107e33..8f1025104 100644 --- a/samples/charts/data-chart/polar-scatter-chart/ReadMe.md +++ b/samples/charts/data-chart/polar-scatter-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Polar Scatter Chart fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/polar-scatter-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/polar-spline-area-chart/ReadMe.md b/samples/charts/data-chart/polar-spline-area-chart/ReadMe.md index 935a86614..e917bf6a8 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/ReadMe.md +++ b/samples/charts/data-chart/polar-spline-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Polar Spline Area Chart +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/polar-spline-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/polar-spline-chart/ReadMe.md b/samples/charts/data-chart/polar-spline-chart/ReadMe.md index a51abc22a..234f1d37e 100644 --- a/samples/charts/data-chart/polar-spline-chart/ReadMe.md +++ b/samples/charts/data-chart/polar-spline-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Polar Spline Chart feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/polar-spline-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/radial-area-chart-styling/ReadMe.md b/samples/charts/data-chart/radial-area-chart-styling/ReadMe.md index e11a369cd..75d3acf7c 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/ReadMe.md +++ b/samples/charts/data-chart/radial-area-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Radial Area Chart Styli +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/radial-area-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/radial-area-chart/ReadMe.md b/samples/charts/data-chart/radial-area-chart/ReadMe.md index 2f18c7fed..ec5874bda 100644 --- a/samples/charts/data-chart/radial-area-chart/ReadMe.md +++ b/samples/charts/data-chart/radial-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Radial Area Chart featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/radial-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/radial-chart-types/ReadMe.md b/samples/charts/data-chart/radial-chart-types/ReadMe.md index 7b26a632b..b320457a6 100644 --- a/samples/charts/data-chart/radial-chart-types/ReadMe.md +++ b/samples/charts/data-chart/radial-chart-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Radial Chart Types feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/radial-chart-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/radial-column-chart/ReadMe.md b/samples/charts/data-chart/radial-column-chart/ReadMe.md index 4534fa992..f39588b44 100644 --- a/samples/charts/data-chart/radial-column-chart/ReadMe.md +++ b/samples/charts/data-chart/radial-column-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Radial Column Chart fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/radial-column-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/radial-line-chart/ReadMe.md b/samples/charts/data-chart/radial-line-chart/ReadMe.md index efe70b503..fb4cf4cf2 100644 --- a/samples/charts/data-chart/radial-line-chart/ReadMe.md +++ b/samples/charts/data-chart/radial-line-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Radial Line Chart featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/radial-line-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/radial-pie-chart/ReadMe.md b/samples/charts/data-chart/radial-pie-chart/ReadMe.md index 3bf1065c5..f35926548 100644 --- a/samples/charts/data-chart/radial-pie-chart/ReadMe.md +++ b/samples/charts/data-chart/radial-pie-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Radial Pie Chart featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/radial-pie-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/range-area-chart/ReadMe.md b/samples/charts/data-chart/range-area-chart/ReadMe.md index 8984b8d83..ed7707ec2 100644 --- a/samples/charts/data-chart/range-area-chart/ReadMe.md +++ b/samples/charts/data-chart/range-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Range Area Chart featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/range-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/range-column-chart/ReadMe.md b/samples/charts/data-chart/range-column-chart/ReadMe.md index 5ba2198a2..45ec2f8fe 100644 --- a/samples/charts/data-chart/range-column-chart/ReadMe.md +++ b/samples/charts/data-chart/range-column-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Range Column Chart feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/range-column-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/ReadMe.md b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/ReadMe.md index eeb751532..54479d4b7 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/ReadMe.md +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scatter Bubble Chart Mu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/scatter-bubble-chart-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/ReadMe.md b/samples/charts/data-chart/scatter-bubble-chart-single-source/ReadMe.md index 972b9bf5d..a01b990ab 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/ReadMe.md +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scatter Bubble Chart Si +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/scatter-bubble-chart-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/ReadMe.md b/samples/charts/data-chart/scatter-bubble-chart-styling/ReadMe.md index 47fd54e00..e6f6ca040 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/ReadMe.md +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scatter Bubble Chart St +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/scatter-bubble-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/scatter-line-chart/ReadMe.md b/samples/charts/data-chart/scatter-line-chart/ReadMe.md index ec49b1821..6f0dac64b 100644 --- a/samples/charts/data-chart/scatter-line-chart/ReadMe.md +++ b/samples/charts/data-chart/scatter-line-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scatter Line Chart feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/scatter-line-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/scatter-point-chart/ReadMe.md b/samples/charts/data-chart/scatter-point-chart/ReadMe.md index 923ca6cc4..dfbc0425a 100644 --- a/samples/charts/data-chart/scatter-point-chart/ReadMe.md +++ b/samples/charts/data-chart/scatter-point-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scatter Point Chart fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/scatter-point-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/scatter-spline-chart/ReadMe.md b/samples/charts/data-chart/scatter-spline-chart/ReadMe.md index 6f86dc377..cb924e71f 100644 --- a/samples/charts/data-chart/scatter-spline-chart/ReadMe.md +++ b/samples/charts/data-chart/scatter-spline-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scatter Spline Chart fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/scatter-spline-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-animations/ReadMe.md b/samples/charts/data-chart/series-animations/ReadMe.md index f194d89a5..eed8ae227 100644 --- a/samples/charts/data-chart/series-animations/ReadMe.md +++ b/samples/charts/data-chart/series-animations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Animations featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-animations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-annotations/ReadMe.md b/samples/charts/data-chart/series-annotations/ReadMe.md index feef083c7..7f38aced0 100644 --- a/samples/charts/data-chart/series-annotations/ReadMe.md +++ b/samples/charts/data-chart/series-annotations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Annotations feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-annotations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-highlighting/ReadMe.md b/samples/charts/data-chart/series-highlighting/ReadMe.md index 8aae1a2e4..6bc59f173 100644 --- a/samples/charts/data-chart/series-highlighting/ReadMe.md +++ b/samples/charts/data-chart/series-highlighting/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Highlighting fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-highlighting ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-marker-template/ReadMe.md b/samples/charts/data-chart/series-marker-template/ReadMe.md index a0e82cae8..70fb93fbb 100644 --- a/samples/charts/data-chart/series-marker-template/ReadMe.md +++ b/samples/charts/data-chart/series-marker-template/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Marker Template +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-marker-template ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-markers/ReadMe.md b/samples/charts/data-chart/series-markers/ReadMe.md index 4281b8c5b..25e5255ff 100644 --- a/samples/charts/data-chart/series-markers/ReadMe.md +++ b/samples/charts/data-chart/series-markers/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Markers feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-markers ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-tooltips/ReadMe.md b/samples/charts/data-chart/series-tooltips/ReadMe.md index 5e53e65ad..7a553e1e4 100644 --- a/samples/charts/data-chart/series-tooltips/ReadMe.md +++ b/samples/charts/data-chart/series-tooltips/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Tooltips feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-tooltips ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-trendlines/ReadMe.md b/samples/charts/data-chart/series-trendlines/ReadMe.md index 6852c2284..170fb9f90 100644 --- a/samples/charts/data-chart/series-trendlines/ReadMe.md +++ b/samples/charts/data-chart/series-trendlines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Trendlines featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-trendlines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-value-overlay/ReadMe.md b/samples/charts/data-chart/series-value-overlay/ReadMe.md index a803ea115..f0be59ebf 100644 --- a/samples/charts/data-chart/series-value-overlay/ReadMe.md +++ b/samples/charts/data-chart/series-value-overlay/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Value Overlay fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-value-overlay ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-100-area-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-area-chart/ReadMe.md index 067618db9..aeb306479 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked 100 Area Chart +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-100-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-100-bar-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-bar-chart/ReadMe.md index ca17dfcf5..1f91cd26f 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-bar-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked 100 Bar Chart f +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-100-bar-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-100-column-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-column-chart/ReadMe.md index eba46f91c..49d694bed 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-column-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked 100 Column Char +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-100-column-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-100-line-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-line-chart/ReadMe.md index 2bffcb38e..776cebfdb 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-line-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked 100 Line Chart +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-100-line-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-spline-area-chart/ReadMe.md index e526ff238..fd2184347 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked 100 Spline Area +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-100-spline-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-100-spline-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-spline-chart/ReadMe.md index eb97e5c3f..cf5f1a8a1 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-spline-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked 100 Spline Char +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-100-spline-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-area-chart/ReadMe.md b/samples/charts/data-chart/stacked-area-chart/ReadMe.md index 1bbfeb5be..5403d4d8d 100644 --- a/samples/charts/data-chart/stacked-area-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked Area Chart feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-bar-chart/ReadMe.md b/samples/charts/data-chart/stacked-bar-chart/ReadMe.md index de281d048..75741e994 100644 --- a/samples/charts/data-chart/stacked-bar-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-bar-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked Bar Chart featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-bar-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-chart-types/ReadMe.md b/samples/charts/data-chart/stacked-chart-types/ReadMe.md index 0fdac7677..696c57edb 100644 --- a/samples/charts/data-chart/stacked-chart-types/ReadMe.md +++ b/samples/charts/data-chart/stacked-chart-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked Chart Types fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-chart-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-column-chart/ReadMe.md b/samples/charts/data-chart/stacked-column-chart/ReadMe.md index 60db3d9c2..d695167a7 100644 --- a/samples/charts/data-chart/stacked-column-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-column-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked Column Chart fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-column-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-line-chart/ReadMe.md b/samples/charts/data-chart/stacked-line-chart/ReadMe.md index 79e73b2e6..e7e7fe878 100644 --- a/samples/charts/data-chart/stacked-line-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-line-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked Line Chart feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-line-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-spline-area-chart/ReadMe.md b/samples/charts/data-chart/stacked-spline-area-chart/ReadMe.md index 9b7aadb83..3235220a7 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-spline-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked Spline Area Cha +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-spline-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-spline-chart/ReadMe.md b/samples/charts/data-chart/stacked-spline-chart/ReadMe.md index 32e56e078..1c2f56b56 100644 --- a/samples/charts/data-chart/stacked-spline-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-spline-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked Spline Chart fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-spline-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/tooltip-template/ReadMe.md b/samples/charts/data-chart/tooltip-template/ReadMe.md index c01c3be07..7d2a9e27b 100644 --- a/samples/charts/data-chart/tooltip-template/ReadMe.md +++ b/samples/charts/data-chart/tooltip-template/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tooltip Template featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/tooltip-template ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/transition-event/ReadMe.md b/samples/charts/data-chart/transition-event/ReadMe.md index e92de3e6d..a2eaf83f2 100644 --- a/samples/charts/data-chart/transition-event/ReadMe.md +++ b/samples/charts/data-chart/transition-event/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Transition Event featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/transition-event ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-area-series/ReadMe.md b/samples/charts/data-chart/type-category-area-series/ReadMe.md index 58fbae5c9..6fc7cd3e4 100644 --- a/samples/charts/data-chart/type-category-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Area Seri +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-bar-series/ReadMe.md b/samples/charts/data-chart/type-category-bar-series/ReadMe.md index caa97f835..f6bf6fe6d 100644 --- a/samples/charts/data-chart/type-category-bar-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-bar-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Bar Serie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-bar-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-column-series/ReadMe.md b/samples/charts/data-chart/type-category-column-series/ReadMe.md index 2950d5068..876c5824b 100644 --- a/samples/charts/data-chart/type-category-column-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-column-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Column Se +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-column-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-line-series/ReadMe.md b/samples/charts/data-chart/type-category-line-series/ReadMe.md index 63f358a04..f09899a1b 100644 --- a/samples/charts/data-chart/type-category-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-line-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Line Seri +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-line-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-point-series/ReadMe.md b/samples/charts/data-chart/type-category-point-series/ReadMe.md index b2ea7b5e8..8e5ad37d1 100644 --- a/samples/charts/data-chart/type-category-point-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-point-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Point Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-point-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-series/ReadMe.md b/samples/charts/data-chart/type-category-series/ReadMe.md index 0ddf8bd82..d6829fc60 100644 --- a/samples/charts/data-chart/type-category-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Series fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-spline-area-series/ReadMe.md b/samples/charts/data-chart/type-category-spline-area-series/ReadMe.md index feea5fad9..7a08b0010 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-spline-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Spline Ar +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-spline-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-spline-series/ReadMe.md b/samples/charts/data-chart/type-category-spline-series/ReadMe.md index e5a6ac8ba..22a1f7c6f 100644 --- a/samples/charts/data-chart/type-category-spline-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-spline-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Spline Se +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-spline-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-step-area-series/ReadMe.md b/samples/charts/data-chart/type-category-step-area-series/ReadMe.md index 62b0110cf..b0aee1d01 100644 --- a/samples/charts/data-chart/type-category-step-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-step-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Step Area +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-step-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-step-line-series/ReadMe.md b/samples/charts/data-chart/type-category-step-line-series/ReadMe.md index c0d8cdd53..5d5a820bc 100644 --- a/samples/charts/data-chart/type-category-step-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-step-line-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Step Line +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-step-line-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-waterfall-series/ReadMe.md b/samples/charts/data-chart/type-category-waterfall-series/ReadMe.md index 563745f9a..20831252d 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-waterfall-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Waterfall +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-waterfall-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-financial-area-indicators/ReadMe.md b/samples/charts/data-chart/type-financial-area-indicators/ReadMe.md index 10e94be7d..01c14b679 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/ReadMe.md +++ b/samples/charts/data-chart/type-financial-area-indicators/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Financial Area Ind +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-financial-area-indicators ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-financial-candlestick-series/ReadMe.md b/samples/charts/data-chart/type-financial-candlestick-series/ReadMe.md index 9c8d0632e..f247ea995 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/ReadMe.md +++ b/samples/charts/data-chart/type-financial-candlestick-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Financial Candlest +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-financial-candlestick-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-financial-column-indicators/ReadMe.md b/samples/charts/data-chart/type-financial-column-indicators/ReadMe.md index 572369138..dd12e0d3f 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/ReadMe.md +++ b/samples/charts/data-chart/type-financial-column-indicators/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Financial Column I +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-financial-column-indicators ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-financial-line-indicators/ReadMe.md b/samples/charts/data-chart/type-financial-line-indicators/ReadMe.md index 099c93ac6..5af6e0fc7 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/ReadMe.md +++ b/samples/charts/data-chart/type-financial-line-indicators/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Financial Line Ind +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-financial-line-indicators ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-financial-ohlc-series/ReadMe.md b/samples/charts/data-chart/type-financial-ohlc-series/ReadMe.md index 2b184ed70..747acc9fe 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/ReadMe.md +++ b/samples/charts/data-chart/type-financial-ohlc-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Financial Ohlc Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-financial-ohlc-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-financial-overlays/ReadMe.md b/samples/charts/data-chart/type-financial-overlays/ReadMe.md index a69c3bc23..c28609a40 100644 --- a/samples/charts/data-chart/type-financial-overlays/ReadMe.md +++ b/samples/charts/data-chart/type-financial-overlays/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Financial Overlays +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-financial-overlays ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-financial-series/ReadMe.md b/samples/charts/data-chart/type-financial-series/ReadMe.md index 864b7ab02..40ecd7a53 100644 --- a/samples/charts/data-chart/type-financial-series/ReadMe.md +++ b/samples/charts/data-chart/type-financial-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Financial Series f +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-financial-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-radial-area-series/ReadMe.md b/samples/charts/data-chart/type-radial-area-series/ReadMe.md index aec7ec367..f4376b492 100644 --- a/samples/charts/data-chart/type-radial-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-radial-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Radial Area Series +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-radial-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-radial-column-series/ReadMe.md b/samples/charts/data-chart/type-radial-column-series/ReadMe.md index 0a627d6ce..d12713489 100644 --- a/samples/charts/data-chart/type-radial-column-series/ReadMe.md +++ b/samples/charts/data-chart/type-radial-column-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Radial Column Seri +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-radial-column-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-radial-line-series/ReadMe.md b/samples/charts/data-chart/type-radial-line-series/ReadMe.md index 75a82b868..4a7aaf715 100644 --- a/samples/charts/data-chart/type-radial-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-radial-line-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Radial Line Series +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-radial-line-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-radial-pie-series/ReadMe.md b/samples/charts/data-chart/type-radial-pie-series/ReadMe.md index a51ae3649..369e780db 100644 --- a/samples/charts/data-chart/type-radial-pie-series/ReadMe.md +++ b/samples/charts/data-chart/type-radial-pie-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Radial Pie Series +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-radial-pie-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-range-area-series/ReadMe.md b/samples/charts/data-chart/type-range-area-series/ReadMe.md index 54e00674d..b33d9f723 100644 --- a/samples/charts/data-chart/type-range-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-range-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Range Area Series +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-range-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-range-column-series/ReadMe.md b/samples/charts/data-chart/type-range-column-series/ReadMe.md index ae0d2396c..04c82779c 100644 --- a/samples/charts/data-chart/type-range-column-series/ReadMe.md +++ b/samples/charts/data-chart/type-range-column-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Range Column Serie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-range-column-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-range-series/ReadMe.md b/samples/charts/data-chart/type-range-series/ReadMe.md index e1bd34ea2..3b00cec72 100644 --- a/samples/charts/data-chart/type-range-series/ReadMe.md +++ b/samples/charts/data-chart/type-range-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Range Series featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-range-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-area-series/ReadMe.md b/samples/charts/data-chart/type-scatter-area-series/ReadMe.md index 125413a08..95d09a8bf 100644 --- a/samples/charts/data-chart/type-scatter-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Area Serie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-bubble-series/ReadMe.md b/samples/charts/data-chart/type-scatter-bubble-series/ReadMe.md index ce1499a6f..5b11494e3 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-bubble-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Bubble Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-bubble-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-contour-series/ReadMe.md b/samples/charts/data-chart/type-scatter-contour-series/ReadMe.md index 99e9f2fe9..f34b4e339 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-contour-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Contour Se +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-contour-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-hd-series/ReadMe.md b/samples/charts/data-chart/type-scatter-hd-series/ReadMe.md index ab812ab31..79fad7812 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-hd-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Hd Series +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-hd-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-line-series/ReadMe.md b/samples/charts/data-chart/type-scatter-line-series/ReadMe.md index 149dc7196..0476a4e76 100644 --- a/samples/charts/data-chart/type-scatter-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-line-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Line Serie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-line-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-point-series/ReadMe.md b/samples/charts/data-chart/type-scatter-point-series/ReadMe.md index c7701af27..2d1a4ea7c 100644 --- a/samples/charts/data-chart/type-scatter-point-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-point-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Point Seri +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-point-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-polygon-series/ReadMe.md b/samples/charts/data-chart/type-scatter-polygon-series/ReadMe.md index d89b32814..2e758774d 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-polygon-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Polygon Se +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-polygon-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-polyline-series/ReadMe.md b/samples/charts/data-chart/type-scatter-polyline-series/ReadMe.md index 74f8c0111..fe700d221 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-polyline-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Polyline S +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-polyline-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-series/ReadMe.md b/samples/charts/data-chart/type-scatter-series/ReadMe.md index b81491902..e1bd16f1a 100644 --- a/samples/charts/data-chart/type-scatter-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Series fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-spline-series/ReadMe.md b/samples/charts/data-chart/type-scatter-spline-series/ReadMe.md index a2f527f81..ce93bb983 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-spline-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Spline Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-spline-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-shape-series/ReadMe.md b/samples/charts/data-chart/type-shape-series/ReadMe.md index 7b17deca0..d238c698b 100644 --- a/samples/charts/data-chart/type-shape-series/ReadMe.md +++ b/samples/charts/data-chart/type-shape-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Shape Series featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-shape-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-100-area-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-area-series/ReadMe.md index 2512a1b8b..e35b8cba1 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked 100 Area S +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-100-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-bar-series/ReadMe.md index 3cb61d265..f5d8d0aaa 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-bar-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked 100 Bar Se +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-100-bar-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-100-column-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-column-series/ReadMe.md index d7218428c..163eacc17 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-column-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked 100 Column +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-100-column-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-100-line-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-line-series/ReadMe.md index 0d17c5ddc..d2bc85634 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-line-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked 100 Line S +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-100-line-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-spline-area-series/ReadMe.md index 20269b775..040b656fd 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked 100 Spline +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-100-spline-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-spline-series/ReadMe.md index 87619cc2c..b56cc7c01 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-spline-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked 100 Spline +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-100-spline-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-area-series/ReadMe.md b/samples/charts/data-chart/type-stacked-area-series/ReadMe.md index 90f7a69e0..903f1f049 100644 --- a/samples/charts/data-chart/type-stacked-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked Area Serie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-bar-series/ReadMe.md b/samples/charts/data-chart/type-stacked-bar-series/ReadMe.md index 2acd9a625..9d1550031 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-bar-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked Bar Series +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-bar-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-column-series/ReadMe.md b/samples/charts/data-chart/type-stacked-column-series/ReadMe.md index ce7106c8e..f8e30cf15 100644 --- a/samples/charts/data-chart/type-stacked-column-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-column-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked Column Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-column-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-line-series/ReadMe.md b/samples/charts/data-chart/type-stacked-line-series/ReadMe.md index bfd07a3b8..ee38025c9 100644 --- a/samples/charts/data-chart/type-stacked-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-line-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked Line Serie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-line-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/ReadMe.md b/samples/charts/data-chart/type-stacked-spline-area-series/ReadMe.md index 7105e5948..6d5fce69c 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-spline-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked Spline Are +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-spline-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-spline-series/ReadMe.md b/samples/charts/data-chart/type-stacked-spline-series/ReadMe.md index e38a03530..0cb627643 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-spline-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked Spline Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-spline-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/waterfall-chart/ReadMe.md b/samples/charts/data-chart/waterfall-chart/ReadMe.md index f3cf42afb..0b45f2fa1 100644 --- a/samples/charts/data-chart/waterfall-chart/ReadMe.md +++ b/samples/charts/data-chart/waterfall-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Waterfall Chart feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/waterfall-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/doughnut-chart/animation/ReadMe.md b/samples/charts/doughnut-chart/animation/ReadMe.md index 3b7df32dc..75dc6213e 100644 --- a/samples/charts/doughnut-chart/animation/ReadMe.md +++ b/samples/charts/doughnut-chart/animation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Animation feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/doughnut-chart/animation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/doughnut-chart/explosion/ReadMe.md b/samples/charts/doughnut-chart/explosion/ReadMe.md index 27cc5c56d..8a71ae777 100644 --- a/samples/charts/doughnut-chart/explosion/ReadMe.md +++ b/samples/charts/doughnut-chart/explosion/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Explosion feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/doughnut-chart/explosion ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/doughnut-chart/legend/ReadMe.md b/samples/charts/doughnut-chart/legend/ReadMe.md index d1368735f..88e6723a3 100644 --- a/samples/charts/doughnut-chart/legend/ReadMe.md +++ b/samples/charts/doughnut-chart/legend/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Legend feature using [D +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/doughnut-chart/legend ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/doughnut-chart/overview/ReadMe.md b/samples/charts/doughnut-chart/overview/ReadMe.md index 367df954e..d681c60dc 100644 --- a/samples/charts/doughnut-chart/overview/ReadMe.md +++ b/samples/charts/doughnut-chart/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/doughnut-chart/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/doughnut-chart/rings/ReadMe.md b/samples/charts/doughnut-chart/rings/ReadMe.md index 5e5bca791..bba1e7286 100644 --- a/samples/charts/doughnut-chart/rings/ReadMe.md +++ b/samples/charts/doughnut-chart/rings/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Rings feature using [Do +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/doughnut-chart/rings ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/doughnut-chart/selection/ReadMe.md b/samples/charts/doughnut-chart/selection/ReadMe.md index 7cace1f0a..ac4006a52 100644 --- a/samples/charts/doughnut-chart/selection/ReadMe.md +++ b/samples/charts/doughnut-chart/selection/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Selection feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/doughnut-chart/selection ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/annotations/ReadMe.md b/samples/charts/financial-chart/annotations/ReadMe.md index 71b2b1ec9..91869ce47 100644 --- a/samples/charts/financial-chart/annotations/ReadMe.md +++ b/samples/charts/financial-chart/annotations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/annotations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/axis-types/ReadMe.md b/samples/charts/financial-chart/axis-types/ReadMe.md index a78c9e575..b63d91ff7 100644 --- a/samples/charts/financial-chart/axis-types/ReadMe.md +++ b/samples/charts/financial-chart/axis-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Types feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/axis-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/ReadMe.md b/samples/charts/financial-chart/data-legend-formatting-currency/ReadMe.md index 433450ebc..f9419a2df 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/ReadMe.md +++ b/samples/charts/financial-chart/data-legend-formatting-currency/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Legend Formatting +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/data-legend-formatting-currency ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/data-legend-styling-props/ReadMe.md b/samples/charts/financial-chart/data-legend-styling-props/ReadMe.md index 4938ea9fe..04b133c28 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/ReadMe.md +++ b/samples/charts/financial-chart/data-legend-styling-props/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Legend Styling Pro +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/data-legend-styling-props ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/data-legend/ReadMe.md b/samples/charts/financial-chart/data-legend/ReadMe.md index 71a490dd5..e8baf8b7a 100644 --- a/samples/charts/financial-chart/data-legend/ReadMe.md +++ b/samples/charts/financial-chart/data-legend/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Legend feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/data-legend ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/ReadMe.md b/samples/charts/financial-chart/data-tooltip-formatting-currency/ReadMe.md index 87b874328..134e40a39 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/ReadMe.md +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Tooltip Formatting +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/data-tooltip-formatting-currency ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/ReadMe.md b/samples/charts/financial-chart/data-tooltip-styling-props/ReadMe.md index 6dfaa4da1..cd787c735 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/ReadMe.md +++ b/samples/charts/financial-chart/data-tooltip-styling-props/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Tooltip Styling Pr +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/data-tooltip-styling-props ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/data-tooltip/ReadMe.md b/samples/charts/financial-chart/data-tooltip/ReadMe.md index f1475ec24..44c384ea8 100644 --- a/samples/charts/financial-chart/data-tooltip/ReadMe.md +++ b/samples/charts/financial-chart/data-tooltip/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Tooltip feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/data-tooltip ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/format-specifiers/ReadMe.md b/samples/charts/financial-chart/format-specifiers/ReadMe.md index 86011e94e..694719de2 100644 --- a/samples/charts/financial-chart/format-specifiers/ReadMe.md +++ b/samples/charts/financial-chart/format-specifiers/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Format Specifiers featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/format-specifiers ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/high-frequency/ReadMe.md b/samples/charts/financial-chart/high-frequency/ReadMe.md index 04398a244..d4f36f8e4 100644 --- a/samples/charts/financial-chart/high-frequency/ReadMe.md +++ b/samples/charts/financial-chart/high-frequency/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of High Frequency feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/high-frequency ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/high-volume/ReadMe.md b/samples/charts/financial-chart/high-volume/ReadMe.md index ca76473a5..abee5d640 100644 --- a/samples/charts/financial-chart/high-volume/ReadMe.md +++ b/samples/charts/financial-chart/high-volume/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of High Volume feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/high-volume ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/indicator-customization/ReadMe.md b/samples/charts/financial-chart/indicator-customization/ReadMe.md index 336c781a7..8d1685b22 100644 --- a/samples/charts/financial-chart/indicator-customization/ReadMe.md +++ b/samples/charts/financial-chart/indicator-customization/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Indicator Customization +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/indicator-customization ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/indicator-types/ReadMe.md b/samples/charts/financial-chart/indicator-types/ReadMe.md index 8c6b650c1..8f9604bcf 100644 --- a/samples/charts/financial-chart/indicator-types/ReadMe.md +++ b/samples/charts/financial-chart/indicator-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Indicator Types feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/indicator-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/multiple-data/ReadMe.md b/samples/charts/financial-chart/multiple-data/ReadMe.md index 7e321bcc9..e15aac039 100644 --- a/samples/charts/financial-chart/multiple-data/ReadMe.md +++ b/samples/charts/financial-chart/multiple-data/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Multiple Data feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/multiple-data ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/multiple-feeds/ReadMe.md b/samples/charts/financial-chart/multiple-feeds/ReadMe.md index fed2cf798..6bfb2a8a6 100644 --- a/samples/charts/financial-chart/multiple-feeds/ReadMe.md +++ b/samples/charts/financial-chart/multiple-feeds/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Multiple Feeds feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/multiple-feeds ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/overview/ReadMe.md b/samples/charts/financial-chart/overview/ReadMe.md index 4d5c7abb5..7edb07f00 100644 --- a/samples/charts/financial-chart/overview/ReadMe.md +++ b/samples/charts/financial-chart/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/panes/ReadMe.md b/samples/charts/financial-chart/panes/ReadMe.md index 6ea4da6a3..5399925c0 100644 --- a/samples/charts/financial-chart/panes/ReadMe.md +++ b/samples/charts/financial-chart/panes/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Panes feature using [Fi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/panes ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/performance/ReadMe.md b/samples/charts/financial-chart/performance/ReadMe.md index 13f3dc3cc..e1d4fb09f 100644 --- a/samples/charts/financial-chart/performance/ReadMe.md +++ b/samples/charts/financial-chart/performance/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Performance feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/performance ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/scrollbars/ReadMe.md b/samples/charts/financial-chart/scrollbars/ReadMe.md index 1e35af58f..7ff6c7ded 100644 --- a/samples/charts/financial-chart/scrollbars/ReadMe.md +++ b/samples/charts/financial-chart/scrollbars/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scrollbars feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/scrollbars ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/stock-index-chart/ReadMe.md b/samples/charts/financial-chart/stock-index-chart/ReadMe.md index 6242a75d9..727649f2e 100644 --- a/samples/charts/financial-chart/stock-index-chart/ReadMe.md +++ b/samples/charts/financial-chart/stock-index-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stock Index Chart featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/stock-index-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/styling/ReadMe.md b/samples/charts/financial-chart/styling/ReadMe.md index 5b5ec7052..73ef0cb2d 100644 --- a/samples/charts/financial-chart/styling/ReadMe.md +++ b/samples/charts/financial-chart/styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Styling feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/theming/ReadMe.md b/samples/charts/financial-chart/theming/ReadMe.md index ee3b4fd28..1fec66d21 100644 --- a/samples/charts/financial-chart/theming/ReadMe.md +++ b/samples/charts/financial-chart/theming/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Theming feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/theming ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/time-based-data/ReadMe.md b/samples/charts/financial-chart/time-based-data/ReadMe.md index 19878d059..bb6ea9329 100644 --- a/samples/charts/financial-chart/time-based-data/ReadMe.md +++ b/samples/charts/financial-chart/time-based-data/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Time Based Data feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/time-based-data ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/titles/ReadMe.md b/samples/charts/financial-chart/titles/ReadMe.md index 63c173fad..c5db2cc30 100644 --- a/samples/charts/financial-chart/titles/ReadMe.md +++ b/samples/charts/financial-chart/titles/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Titles feature using [F +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/titles ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/tooltip-template/ReadMe.md b/samples/charts/financial-chart/tooltip-template/ReadMe.md index 7ab26dca0..a9e8d20e0 100644 --- a/samples/charts/financial-chart/tooltip-template/ReadMe.md +++ b/samples/charts/financial-chart/tooltip-template/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tooltip Template featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/tooltip-template ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/tooltip-types/ReadMe.md b/samples/charts/financial-chart/tooltip-types/ReadMe.md index 242463d1e..c9ce192b8 100644 --- a/samples/charts/financial-chart/tooltip-types/ReadMe.md +++ b/samples/charts/financial-chart/tooltip-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tooltip Types feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/tooltip-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/trendlines/ReadMe.md b/samples/charts/financial-chart/trendlines/ReadMe.md index ef6442c01..f0c04256a 100644 --- a/samples/charts/financial-chart/trendlines/ReadMe.md +++ b/samples/charts/financial-chart/trendlines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Trendlines feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/trendlines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/volume-types/ReadMe.md b/samples/charts/financial-chart/volume-types/ReadMe.md index 45688655d..9e226a73a 100644 --- a/samples/charts/financial-chart/volume-types/ReadMe.md +++ b/samples/charts/financial-chart/volume-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Volume Types feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/volume-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/pie-chart/animation/ReadMe.md b/samples/charts/pie-chart/animation/ReadMe.md index 893a91b7a..f38cd141c 100644 --- a/samples/charts/pie-chart/animation/ReadMe.md +++ b/samples/charts/pie-chart/animation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Animation feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/pie-chart/animation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/pie-chart/explosion/ReadMe.md b/samples/charts/pie-chart/explosion/ReadMe.md index eb14e455f..f3165aac8 100644 --- a/samples/charts/pie-chart/explosion/ReadMe.md +++ b/samples/charts/pie-chart/explosion/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Explosion feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/pie-chart/explosion ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/pie-chart/legend/ReadMe.md b/samples/charts/pie-chart/legend/ReadMe.md index 1ffec61dc..79927ef8c 100644 --- a/samples/charts/pie-chart/legend/ReadMe.md +++ b/samples/charts/pie-chart/legend/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Legend feature using [P +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/pie-chart/legend ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/pie-chart/others/ReadMe.md b/samples/charts/pie-chart/others/ReadMe.md index 9b895cf13..580530d9c 100644 --- a/samples/charts/pie-chart/others/ReadMe.md +++ b/samples/charts/pie-chart/others/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Others feature using [P +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/pie-chart/others ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/pie-chart/overview/ReadMe.md b/samples/charts/pie-chart/overview/ReadMe.md index f984e0ad7..8e506da1d 100644 --- a/samples/charts/pie-chart/overview/ReadMe.md +++ b/samples/charts/pie-chart/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/pie-chart/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/pie-chart/selection/ReadMe.md b/samples/charts/pie-chart/selection/ReadMe.md index ebae4a7e8..0b3b85b31 100644 --- a/samples/charts/pie-chart/selection/ReadMe.md +++ b/samples/charts/pie-chart/selection/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Selection feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/pie-chart/selection ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/pie-chart/styling/ReadMe.md b/samples/charts/pie-chart/styling/ReadMe.md index 43032825e..47067a9df 100644 --- a/samples/charts/pie-chart/styling/ReadMe.md +++ b/samples/charts/pie-chart/styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Styling feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/pie-chart/styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/display-area/ReadMe.md b/samples/charts/sparkline/display-area/ReadMe.md index 78fc4aeef..e7eb2cc41 100644 --- a/samples/charts/sparkline/display-area/ReadMe.md +++ b/samples/charts/sparkline/display-area/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Area feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/display-area ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/display-column/ReadMe.md b/samples/charts/sparkline/display-column/ReadMe.md index 373040562..617b02abf 100644 --- a/samples/charts/sparkline/display-column/ReadMe.md +++ b/samples/charts/sparkline/display-column/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Column feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/display-column ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/display-lines/ReadMe.md b/samples/charts/sparkline/display-lines/ReadMe.md index d660848e3..ea37fc5e5 100644 --- a/samples/charts/sparkline/display-lines/ReadMe.md +++ b/samples/charts/sparkline/display-lines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Lines feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/display-lines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/display-types/ReadMe.md b/samples/charts/sparkline/display-types/ReadMe.md index 118ffd8aa..ec0ef7a67 100644 --- a/samples/charts/sparkline/display-types/ReadMe.md +++ b/samples/charts/sparkline/display-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Types feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/display-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/display-winloss/ReadMe.md b/samples/charts/sparkline/display-winloss/ReadMe.md index 431024ccc..944eac16f 100644 --- a/samples/charts/sparkline/display-winloss/ReadMe.md +++ b/samples/charts/sparkline/display-winloss/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Winloss feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/display-winloss ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/grid/ReadMe.md b/samples/charts/sparkline/grid/ReadMe.md index d9ff480f1..ed64a2623 100644 --- a/samples/charts/sparkline/grid/ReadMe.md +++ b/samples/charts/sparkline/grid/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Grid feature using [Spa +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/grid ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/markers/ReadMe.md b/samples/charts/sparkline/markers/ReadMe.md index 7f541e11c..445f61848 100644 --- a/samples/charts/sparkline/markers/ReadMe.md +++ b/samples/charts/sparkline/markers/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Markers feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/markers ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/normal-range/ReadMe.md b/samples/charts/sparkline/normal-range/ReadMe.md index d41efb196..f1bf44196 100644 --- a/samples/charts/sparkline/normal-range/ReadMe.md +++ b/samples/charts/sparkline/normal-range/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Normal Range feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/normal-range ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/trendlines/ReadMe.md b/samples/charts/sparkline/trendlines/ReadMe.md index 1b6099209..57776d9b5 100644 --- a/samples/charts/sparkline/trendlines/ReadMe.md +++ b/samples/charts/sparkline/trendlines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Trendlines feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/trendlines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/unknown-values/ReadMe.md b/samples/charts/sparkline/unknown-values/ReadMe.md index c8535251b..66c4006fb 100644 --- a/samples/charts/sparkline/unknown-values/ReadMe.md +++ b/samples/charts/sparkline/unknown-values/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Unknown Values feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/unknown-values ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/toolbar/actions-built-in-category-chart/ReadMe.md b/samples/charts/toolbar/actions-built-in-category-chart/ReadMe.md index def64ee5c..45961a4e4 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/ReadMe.md +++ b/samples/charts/toolbar/actions-built-in-category-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Actions Built In Catego +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/toolbar/actions-built-in-category-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/toolbar/actions-built-in-data-chart/ReadMe.md b/samples/charts/toolbar/actions-built-in-data-chart/ReadMe.md index 2432ab56d..4b2ae5f92 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/ReadMe.md +++ b/samples/charts/toolbar/actions-built-in-data-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Actions Built In Data C +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/toolbar/actions-built-in-data-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/toolbar/custom-tool/ReadMe.md b/samples/charts/toolbar/custom-tool/ReadMe.md index c16697f84..d0284c4ba 100644 --- a/samples/charts/toolbar/custom-tool/ReadMe.md +++ b/samples/charts/toolbar/custom-tool/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Custom Tool feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/toolbar/custom-tool ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/ReadMe.md b/samples/charts/toolbar/layout-actions-for-data-chart/ReadMe.md index 840dfde36..7e37c8b9d 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/ReadMe.md +++ b/samples/charts/toolbar/layout-actions-for-data-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Layout Actions For Data +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/toolbar/layout-actions-for-data-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/ReadMe.md b/samples/charts/toolbar/layout-in-vertical-orientation/ReadMe.md index 54e467ba6..318c1d3e6 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/ReadMe.md +++ b/samples/charts/toolbar/layout-in-vertical-orientation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Layout In Vertical Orie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/toolbar/layout-in-vertical-orientation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/toolbar/theming/ReadMe.md b/samples/charts/toolbar/theming/ReadMe.md index 98df7efba..c25071111 100644 --- a/samples/charts/toolbar/theming/ReadMe.md +++ b/samples/charts/toolbar/theming/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Theming feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/toolbar/theming ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/tree-map/events/ReadMe.md b/samples/charts/tree-map/events/ReadMe.md index eebeb522f..2447be69e 100644 --- a/samples/charts/tree-map/events/ReadMe.md +++ b/samples/charts/tree-map/events/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Events feature using [T +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/tree-map/events ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/tree-map/layout/ReadMe.md b/samples/charts/tree-map/layout/ReadMe.md index d26cbd96b..be94494bb 100644 --- a/samples/charts/tree-map/layout/ReadMe.md +++ b/samples/charts/tree-map/layout/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Layout feature using [T +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/tree-map/layout ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/tree-map/overview/ReadMe.md b/samples/charts/tree-map/overview/ReadMe.md index 4a731d1eb..6ed090c04 100644 --- a/samples/charts/tree-map/overview/ReadMe.md +++ b/samples/charts/tree-map/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/tree-map/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/tree-map/styling/ReadMe.md b/samples/charts/tree-map/styling/ReadMe.md index f4b156bc6..0b6faa348 100644 --- a/samples/charts/tree-map/styling/ReadMe.md +++ b/samples/charts/tree-map/styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Styling feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/tree-map/styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/zoomslider/overview/ReadMe.md b/samples/charts/zoomslider/overview/ReadMe.md index 5678f2176..46f29ce39 100644 --- a/samples/charts/zoomslider/overview/ReadMe.md +++ b/samples/charts/zoomslider/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/zoomslider/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/excel-library/operations-on-workbooks/ReadMe.md b/samples/excel/excel-library/operations-on-workbooks/ReadMe.md index 980e0bea1..94391979f 100644 --- a/samples/excel/excel-library/operations-on-workbooks/ReadMe.md +++ b/samples/excel/excel-library/operations-on-workbooks/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Operations On Workbooks +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/excel-library/operations-on-workbooks ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/excel-library/operations-on-worksheets/ReadMe.md b/samples/excel/excel-library/operations-on-worksheets/ReadMe.md index 235499c0f..c26c7b99d 100644 --- a/samples/excel/excel-library/operations-on-worksheets/ReadMe.md +++ b/samples/excel/excel-library/operations-on-worksheets/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Operations On Worksheet +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/excel-library/operations-on-worksheets ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/excel-library/overview/ReadMe.md b/samples/excel/excel-library/overview/ReadMe.md index 073411aa2..1e2f7f9fb 100644 --- a/samples/excel/excel-library/overview/ReadMe.md +++ b/samples/excel/excel-library/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/excel-library/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/excel-library/working-with-cells/ReadMe.md b/samples/excel/excel-library/working-with-cells/ReadMe.md index 865facd83..f0d276935 100644 --- a/samples/excel/excel-library/working-with-cells/ReadMe.md +++ b/samples/excel/excel-library/working-with-cells/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Working With Cells feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/excel-library/working-with-cells ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/excel-library/working-with-charts/ReadMe.md b/samples/excel/excel-library/working-with-charts/ReadMe.md index 26524b860..1246eb368 100644 --- a/samples/excel/excel-library/working-with-charts/ReadMe.md +++ b/samples/excel/excel-library/working-with-charts/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Working With Charts fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/excel-library/working-with-charts ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/excel-library/working-with-sparklines/ReadMe.md b/samples/excel/excel-library/working-with-sparklines/ReadMe.md index eda79e574..25c775b60 100644 --- a/samples/excel/excel-library/working-with-sparklines/ReadMe.md +++ b/samples/excel/excel-library/working-with-sparklines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Working With Sparklines +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/excel-library/working-with-sparklines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/excel-library/working-with-tables/ReadMe.md b/samples/excel/excel-library/working-with-tables/ReadMe.md index 7a6eddec5..8224282f9 100644 --- a/samples/excel/excel-library/working-with-tables/ReadMe.md +++ b/samples/excel/excel-library/working-with-tables/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Working With Tables fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/excel-library/working-with-tables ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/activation/ReadMe.md b/samples/excel/spreadsheet/activation/ReadMe.md index 370b92912..bc58bd49a 100644 --- a/samples/excel/spreadsheet/activation/ReadMe.md +++ b/samples/excel/spreadsheet/activation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Activation feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/activation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/adapter-chart/ReadMe.md b/samples/excel/spreadsheet/adapter-chart/ReadMe.md index cb5b7174b..2cfe8d0ca 100644 --- a/samples/excel/spreadsheet/adapter-chart/ReadMe.md +++ b/samples/excel/spreadsheet/adapter-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Adapter Chart feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/adapter-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/adapter-combo/ReadMe.md b/samples/excel/spreadsheet/adapter-combo/ReadMe.md index 209385214..762d4c275 100644 --- a/samples/excel/spreadsheet/adapter-combo/ReadMe.md +++ b/samples/excel/spreadsheet/adapter-combo/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Adapter Combo feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/adapter-combo ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/clipboard/ReadMe.md b/samples/excel/spreadsheet/clipboard/ReadMe.md index 91485f564..356334f3f 100644 --- a/samples/excel/spreadsheet/clipboard/ReadMe.md +++ b/samples/excel/spreadsheet/clipboard/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Clipboard feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/clipboard ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/commands/ReadMe.md b/samples/excel/spreadsheet/commands/ReadMe.md index fcc0705e2..9802c96b1 100644 --- a/samples/excel/spreadsheet/commands/ReadMe.md +++ b/samples/excel/spreadsheet/commands/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Commands feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/commands ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/conditional-formatting/ReadMe.md b/samples/excel/spreadsheet/conditional-formatting/ReadMe.md index 810fbd4f6..d07356087 100644 --- a/samples/excel/spreadsheet/conditional-formatting/ReadMe.md +++ b/samples/excel/spreadsheet/conditional-formatting/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Conditional Formatting +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/conditional-formatting ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/config-options/ReadMe.md b/samples/excel/spreadsheet/config-options/ReadMe.md index bb349209c..6252e5d3f 100644 --- a/samples/excel/spreadsheet/config-options/ReadMe.md +++ b/samples/excel/spreadsheet/config-options/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Config Options feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/config-options ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/data-validation/ReadMe.md b/samples/excel/spreadsheet/data-validation/ReadMe.md index b5d7e6617..af802c34d 100644 --- a/samples/excel/spreadsheet/data-validation/ReadMe.md +++ b/samples/excel/spreadsheet/data-validation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Validation feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/data-validation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/hyperlinks/ReadMe.md b/samples/excel/spreadsheet/hyperlinks/ReadMe.md index f07340da6..4085411a4 100644 --- a/samples/excel/spreadsheet/hyperlinks/ReadMe.md +++ b/samples/excel/spreadsheet/hyperlinks/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Hyperlinks feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/hyperlinks ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/overview/ReadMe.md b/samples/excel/spreadsheet/overview/ReadMe.md index 22383b86f..6adfcca59 100644 --- a/samples/excel/spreadsheet/overview/ReadMe.md +++ b/samples/excel/spreadsheet/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/bullet-graph/animation/ReadMe.md b/samples/gauges/bullet-graph/animation/ReadMe.md index da3a546bf..07e2f2a81 100644 --- a/samples/gauges/bullet-graph/animation/ReadMe.md +++ b/samples/gauges/bullet-graph/animation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Animation feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/bullet-graph/animation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/bullet-graph/background/ReadMe.md b/samples/gauges/bullet-graph/background/ReadMe.md index 959375400..7d1914c7b 100644 --- a/samples/gauges/bullet-graph/background/ReadMe.md +++ b/samples/gauges/bullet-graph/background/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Background feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/bullet-graph/background ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/bullet-graph/labels/ReadMe.md b/samples/gauges/bullet-graph/labels/ReadMe.md index d487d0232..aad2e41b4 100644 --- a/samples/gauges/bullet-graph/labels/ReadMe.md +++ b/samples/gauges/bullet-graph/labels/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Labels feature using [B +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/bullet-graph/labels ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/bullet-graph/measures/ReadMe.md b/samples/gauges/bullet-graph/measures/ReadMe.md index 4af067005..7ef6edef3 100644 --- a/samples/gauges/bullet-graph/measures/ReadMe.md +++ b/samples/gauges/bullet-graph/measures/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Measures feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/bullet-graph/measures ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/bullet-graph/ranges/ReadMe.md b/samples/gauges/bullet-graph/ranges/ReadMe.md index 05ce72f8e..0dfab10d1 100644 --- a/samples/gauges/bullet-graph/ranges/ReadMe.md +++ b/samples/gauges/bullet-graph/ranges/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Ranges feature using [B +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/bullet-graph/ranges ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/bullet-graph/scale/ReadMe.md b/samples/gauges/bullet-graph/scale/ReadMe.md index 81eb43605..91bc044d0 100644 --- a/samples/gauges/bullet-graph/scale/ReadMe.md +++ b/samples/gauges/bullet-graph/scale/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scale feature using [Bu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/bullet-graph/scale ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/bullet-graph/tickmarks/ReadMe.md b/samples/gauges/bullet-graph/tickmarks/ReadMe.md index f4de9e703..6e7f8c68e 100644 --- a/samples/gauges/bullet-graph/tickmarks/ReadMe.md +++ b/samples/gauges/bullet-graph/tickmarks/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tickmarks feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/bullet-graph/tickmarks ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/linear-gauge/animation/ReadMe.md b/samples/gauges/linear-gauge/animation/ReadMe.md index 686100676..a8c17d398 100644 --- a/samples/gauges/linear-gauge/animation/ReadMe.md +++ b/samples/gauges/linear-gauge/animation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Animation feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/linear-gauge/animation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/linear-gauge/backing/ReadMe.md b/samples/gauges/linear-gauge/backing/ReadMe.md index fb0ca2c6c..c46906fc6 100644 --- a/samples/gauges/linear-gauge/backing/ReadMe.md +++ b/samples/gauges/linear-gauge/backing/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Backing feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/linear-gauge/backing ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/linear-gauge/labels/ReadMe.md b/samples/gauges/linear-gauge/labels/ReadMe.md index 3e1774f36..128e49c18 100644 --- a/samples/gauges/linear-gauge/labels/ReadMe.md +++ b/samples/gauges/linear-gauge/labels/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Labels feature using [L +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/linear-gauge/labels ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/linear-gauge/needle/ReadMe.md b/samples/gauges/linear-gauge/needle/ReadMe.md index d26bbcf47..00099620e 100644 --- a/samples/gauges/linear-gauge/needle/ReadMe.md +++ b/samples/gauges/linear-gauge/needle/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Needle feature using [L +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/linear-gauge/needle ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/linear-gauge/ranges/ReadMe.md b/samples/gauges/linear-gauge/ranges/ReadMe.md index eccc942b9..c113fa701 100644 --- a/samples/gauges/linear-gauge/ranges/ReadMe.md +++ b/samples/gauges/linear-gauge/ranges/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Ranges feature using [L +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/linear-gauge/ranges ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/linear-gauge/scale/ReadMe.md b/samples/gauges/linear-gauge/scale/ReadMe.md index 25a46a448..c265a5c9a 100644 --- a/samples/gauges/linear-gauge/scale/ReadMe.md +++ b/samples/gauges/linear-gauge/scale/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scale feature using [Li +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/linear-gauge/scale ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/linear-gauge/tickmarks/ReadMe.md b/samples/gauges/linear-gauge/tickmarks/ReadMe.md index 6a8e35466..3e786bec1 100644 --- a/samples/gauges/linear-gauge/tickmarks/ReadMe.md +++ b/samples/gauges/linear-gauge/tickmarks/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tickmarks feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/linear-gauge/tickmarks ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/radial-gauge/animation/ReadMe.md b/samples/gauges/radial-gauge/animation/ReadMe.md index 1fac54284..9cf16b303 100644 --- a/samples/gauges/radial-gauge/animation/ReadMe.md +++ b/samples/gauges/radial-gauge/animation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Animation feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/radial-gauge/animation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/radial-gauge/backing/ReadMe.md b/samples/gauges/radial-gauge/backing/ReadMe.md index 5c90d11d1..c2fdb370f 100644 --- a/samples/gauges/radial-gauge/backing/ReadMe.md +++ b/samples/gauges/radial-gauge/backing/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Backing feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/radial-gauge/backing ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/radial-gauge/labels/ReadMe.md b/samples/gauges/radial-gauge/labels/ReadMe.md index 97a6b2342..fdb669f58 100644 --- a/samples/gauges/radial-gauge/labels/ReadMe.md +++ b/samples/gauges/radial-gauge/labels/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Labels feature using [R +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/radial-gauge/labels ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/radial-gauge/needle/ReadMe.md b/samples/gauges/radial-gauge/needle/ReadMe.md index 008e27710..7fafd27ca 100644 --- a/samples/gauges/radial-gauge/needle/ReadMe.md +++ b/samples/gauges/radial-gauge/needle/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Needle feature using [R +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/radial-gauge/needle ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/radial-gauge/ranges/ReadMe.md b/samples/gauges/radial-gauge/ranges/ReadMe.md index b46b99bc9..361989f4a 100644 --- a/samples/gauges/radial-gauge/ranges/ReadMe.md +++ b/samples/gauges/radial-gauge/ranges/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Ranges feature using [R +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/radial-gauge/ranges ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/radial-gauge/scale/ReadMe.md b/samples/gauges/radial-gauge/scale/ReadMe.md index 9dc8d570b..82c19f7b6 100644 --- a/samples/gauges/radial-gauge/scale/ReadMe.md +++ b/samples/gauges/radial-gauge/scale/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scale feature using [Ra +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/radial-gauge/scale ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/radial-gauge/tickmarks/ReadMe.md b/samples/gauges/radial-gauge/tickmarks/ReadMe.md index 809755a11..6626b729a 100644 --- a/samples/gauges/radial-gauge/tickmarks/ReadMe.md +++ b/samples/gauges/radial-gauge/tickmarks/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tickmarks feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/radial-gauge/tickmarks ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-data-csv/ReadMe.md b/samples/maps/geo-map/binding-data-csv/ReadMe.md index 50e17a3e0..8b8e7e9cb 100644 --- a/samples/maps/geo-map/binding-data-csv/ReadMe.md +++ b/samples/maps/geo-map/binding-data-csv/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Data Csv featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-data-csv ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-data-json-points/ReadMe.md b/samples/maps/geo-map/binding-data-json-points/ReadMe.md index 218e8d37e..dcdfe6474 100644 --- a/samples/maps/geo-map/binding-data-json-points/ReadMe.md +++ b/samples/maps/geo-map/binding-data-json-points/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Data Json Point +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-data-json-points ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-data-model/ReadMe.md b/samples/maps/geo-map/binding-data-model/ReadMe.md index 8a3371b82..9db8b0ef7 100644 --- a/samples/maps/geo-map/binding-data-model/ReadMe.md +++ b/samples/maps/geo-map/binding-data-model/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Data Model feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-data-model ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-multiple-shapes/ReadMe.md b/samples/maps/geo-map/binding-multiple-shapes/ReadMe.md index f82262228..492102ddb 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/ReadMe.md +++ b/samples/maps/geo-map/binding-multiple-shapes/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Multiple Shapes +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-multiple-shapes ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-multiple-sources/ReadMe.md b/samples/maps/geo-map/binding-multiple-sources/ReadMe.md index 6372df4a4..8811c96fb 100644 --- a/samples/maps/geo-map/binding-multiple-sources/ReadMe.md +++ b/samples/maps/geo-map/binding-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Multiple Source +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-shp-points/ReadMe.md b/samples/maps/geo-map/binding-shp-points/ReadMe.md index 4eaee8717..b5b02e74e 100644 --- a/samples/maps/geo-map/binding-shp-points/ReadMe.md +++ b/samples/maps/geo-map/binding-shp-points/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Shp Points feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-shp-points ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-shp-polygons/ReadMe.md b/samples/maps/geo-map/binding-shp-polygons/ReadMe.md index cffc30590..55db1c767 100644 --- a/samples/maps/geo-map/binding-shp-polygons/ReadMe.md +++ b/samples/maps/geo-map/binding-shp-polygons/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Shp Polygons fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-shp-polygons ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-shp-polylines/ReadMe.md b/samples/maps/geo-map/binding-shp-polylines/ReadMe.md index 5ab062758..962a7d61e 100644 --- a/samples/maps/geo-map/binding-shp-polylines/ReadMe.md +++ b/samples/maps/geo-map/binding-shp-polylines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Shp Polylines f +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-shp-polylines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/custom-tooltips/ReadMe.md b/samples/maps/geo-map/custom-tooltips/ReadMe.md index dd9cc1433..2d88e50d0 100644 --- a/samples/maps/geo-map/custom-tooltips/ReadMe.md +++ b/samples/maps/geo-map/custom-tooltips/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Custom Tooltips feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/custom-tooltips ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/display-bing-imagery/ReadMe.md b/samples/maps/geo-map/display-bing-imagery/ReadMe.md index 7bf198026..c7048c3b3 100644 --- a/samples/maps/geo-map/display-bing-imagery/ReadMe.md +++ b/samples/maps/geo-map/display-bing-imagery/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Bing Imagery fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/display-bing-imagery ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/display-esri-imagery/ReadMe.md b/samples/maps/geo-map/display-esri-imagery/ReadMe.md index f1571d730..17864941a 100644 --- a/samples/maps/geo-map/display-esri-imagery/ReadMe.md +++ b/samples/maps/geo-map/display-esri-imagery/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Esri Imagery fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/display-esri-imagery ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/display-heat-imagery/ReadMe.md b/samples/maps/geo-map/display-heat-imagery/ReadMe.md index 6f1b2b863..d751a7883 100644 --- a/samples/maps/geo-map/display-heat-imagery/ReadMe.md +++ b/samples/maps/geo-map/display-heat-imagery/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Heat Imagery fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/display-heat-imagery ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/display-osm-imagery/ReadMe.md b/samples/maps/geo-map/display-osm-imagery/ReadMe.md index bf76e1384..f0289b53f 100644 --- a/samples/maps/geo-map/display-osm-imagery/ReadMe.md +++ b/samples/maps/geo-map/display-osm-imagery/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Osm Imagery fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/display-osm-imagery ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/marker-layouts/ReadMe.md b/samples/maps/geo-map/marker-layouts/ReadMe.md index afa2d2309..9444c5626 100644 --- a/samples/maps/geo-map/marker-layouts/ReadMe.md +++ b/samples/maps/geo-map/marker-layouts/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Marker Layouts feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/marker-layouts ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/marker-template/ReadMe.md b/samples/maps/geo-map/marker-template/ReadMe.md index ecb97036b..484d31482 100644 --- a/samples/maps/geo-map/marker-template/ReadMe.md +++ b/samples/maps/geo-map/marker-template/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Marker Template feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/marker-template ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/marker-type/ReadMe.md b/samples/maps/geo-map/marker-type/ReadMe.md index 73d1350fc..5c26df047 100644 --- a/samples/maps/geo-map/marker-type/ReadMe.md +++ b/samples/maps/geo-map/marker-type/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Marker Type feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/marker-type ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/navigation/ReadMe.md b/samples/maps/geo-map/navigation/ReadMe.md index e52b8e253..c1123c7fd 100644 --- a/samples/maps/geo-map/navigation/ReadMe.md +++ b/samples/maps/geo-map/navigation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Navigation feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/navigation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/overview/ReadMe.md b/samples/maps/geo-map/overview/ReadMe.md index b92fefea3..a8bdfc36c 100644 --- a/samples/maps/geo-map/overview/ReadMe.md +++ b/samples/maps/geo-map/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/shape-styling/ReadMe.md b/samples/maps/geo-map/shape-styling/ReadMe.md index 7c0009611..e9284a14a 100644 --- a/samples/maps/geo-map/shape-styling/ReadMe.md +++ b/samples/maps/geo-map/shape-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Shape Styling feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/shape-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/triangulating-data/ReadMe.md b/samples/maps/geo-map/triangulating-data/ReadMe.md index 6ee8fa321..0fbabcf16 100644 --- a/samples/maps/geo-map/triangulating-data/ReadMe.md +++ b/samples/maps/geo-map/triangulating-data/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Triangulating Data feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/triangulating-data ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/type-scatter-area-series/ReadMe.md b/samples/maps/geo-map/type-scatter-area-series/ReadMe.md index 144150b11..e17169739 100644 --- a/samples/maps/geo-map/type-scatter-area-series/ReadMe.md +++ b/samples/maps/geo-map/type-scatter-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Area Serie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/type-scatter-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/type-scatter-bubble-series/ReadMe.md b/samples/maps/geo-map/type-scatter-bubble-series/ReadMe.md index 19b210f15..b17f275cb 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/ReadMe.md +++ b/samples/maps/geo-map/type-scatter-bubble-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Bubble Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/type-scatter-bubble-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/type-scatter-contour-series/ReadMe.md b/samples/maps/geo-map/type-scatter-contour-series/ReadMe.md index 74f7fff4a..93d3df68f 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/ReadMe.md +++ b/samples/maps/geo-map/type-scatter-contour-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Contour Se +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/type-scatter-contour-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/type-scatter-density-series/ReadMe.md b/samples/maps/geo-map/type-scatter-density-series/ReadMe.md index d8728e0c7..2e6d0410c 100644 --- a/samples/maps/geo-map/type-scatter-density-series/ReadMe.md +++ b/samples/maps/geo-map/type-scatter-density-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Density Se +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/type-scatter-density-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/type-scatter-symbol-series/ReadMe.md b/samples/maps/geo-map/type-scatter-symbol-series/ReadMe.md index a0c8211e7..243e869bf 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/ReadMe.md +++ b/samples/maps/geo-map/type-scatter-symbol-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Symbol Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/type-scatter-symbol-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/type-shape-polygon-series/ReadMe.md b/samples/maps/geo-map/type-shape-polygon-series/ReadMe.md index 99595521a..2506f0a22 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/ReadMe.md +++ b/samples/maps/geo-map/type-shape-polygon-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Shape Polygon Seri +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/type-shape-polygon-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/type-shape-polyline-series/ReadMe.md b/samples/maps/geo-map/type-shape-polyline-series/ReadMe.md index 88c0ef1d1..dbd8a23ba 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/ReadMe.md +++ b/samples/maps/geo-map/type-shape-polyline-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Shape Polyline Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/type-shape-polyline-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/templates/ReadMe.md b/samples/templates/ReadMe.md index e8836809a..096ff43d3 100644 --- a/samples/templates/ReadMe.md +++ b/samples/templates/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of {SampleDisplayName} fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd {SampleFolderPath} ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More