-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Niilo Keinänen
committed
Nov 5, 2024
0 parents
commit 1fd4ece
Showing
13 changed files
with
842 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: GitHub Pages | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Use Node.js 16.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: "16.x" | ||
|
||
- name: Build | ||
env: | ||
LCJS_LICENSE: ${{ secrets.LCJS_DEPLOY_LICENSE }} | ||
run: | | ||
npm install | ||
npm run build | ||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./dist | ||
publish_branch: gh-pages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules | ||
dist | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2022 LightningChart Ltd. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Parallel Coordinate Chart with Color Lookup | ||
|
||
![Parallel Coordinate Chart with Color Lookup](parallelCoordChartLUT-darkGold.png) | ||
|
||
This demo application belongs to the set of examples for LightningChart JS, data visualization library for JavaScript. | ||
|
||
LightningChart JS is entirely GPU accelerated and performance optimized charting library for presenting massive amounts of data. It offers an easy way of creating sophisticated and interactive charts and adding them to your website or web application. | ||
|
||
The demo can be used as an example or a seed project. Local execution requires the following steps: | ||
|
||
- Make sure that relevant version of [Node.js](https://nodejs.org/en/download/) is installed | ||
- Open the project folder in a terminal: | ||
|
||
npm install # fetches dependencies | ||
npm start # builds an application and starts the development server | ||
|
||
- The application is available at _http://localhost:8080_ in your browser, webpack-dev-server provides hot reload functionality. | ||
|
||
|
||
## Description | ||
|
||
Example of using the built-in color by value feature of Parallel coordinate chart. | ||
|
||
Parallel coordinate chart has built-in `LUT` (color lookup table) functionality, which allows dynamic coloring of series based on their value along a specific Axis, in this case based on the "accuracy" Axis. | ||
|
||
The example context is from Machine Learning training. | ||
|
||
## API Links | ||
|
||
|
||
|
||
## Support | ||
|
||
If you notice an error in the example code, please open an issue on [GitHub][0] repository of the entire example. | ||
|
||
Official [API documentation][1] can be found on [LightningChart][2] website. | ||
|
||
If the docs and other materials do not solve your problem as well as implementation help is needed, ask on [StackOverflow][3] (tagged lightningchart). | ||
|
||
If you think you found a bug in the LightningChart JavaScript library, please contact [email protected]. | ||
|
||
Direct developer email support can be purchased through a [Support Plan][4] or by contacting [email protected]. | ||
|
||
[0]: https://github.com/Arction/ | ||
[1]: https://lightningchart.com/lightningchart-js-api-documentation/ | ||
[2]: https://lightningchart.com | ||
[3]: https://stackoverflow.com/questions/tagged/lightningchart | ||
[4]: https://lightningchart.com/support-services/ | ||
|
||
© LightningChart Ltd 2009-2022. All rights reserved. | ||
|
||
|
||
|
Oops, something went wrong.