Skip to content

Commit b135404

Browse files
committed
Initial
0 parents  commit b135404

File tree

10 files changed

+54147
-0
lines changed

10 files changed

+54147
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Webpack build to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
14+
- name: Use Node.js 16.x
15+
uses: actions/setup-node@v1
16+
with:
17+
node-version: '16.x'
18+
19+
- name: Build
20+
run: |
21+
npm install
22+
npm run build
23+
24+
- name: Deploy
25+
uses: peaceiris/actions-gh-pages@v3
26+
with:
27+
github_token: ${{ secrets.GITHUB_TOKEN }}
28+
publish_dir: ./dist
29+
publish_branch: gh-pages

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

README.md

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
# JavaScript Racecar Track Data Analysis Chart
2+
3+
![JavaScript Racecar Track Data Analysis Chart](linePaletteValue.png)
4+
5+
This demo application belongs to the set of examples for LightningChart JS, data visualization library for JavaScript.
6+
7+
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.
8+
9+
The demo can be used as an example or a seed project. Local execution requires the following steps:
10+
11+
- Make sure that relevant version of [Node.js](https://nodejs.org/en/download/) is installed
12+
- Open the project folder in a terminal:
13+
14+
npm install # fetches dependencies
15+
npm start # builds an application and starts the development server
16+
17+
- The application is available at *http://localhost:8080* in your browser, webpack-dev-server provides hot reload functionality.
18+
19+
20+
## Description
21+
22+
Example that showcases `LineSeries` feature for coloring line dynamically based on separate Value data set.
23+
24+
This example takes place in the field of motor-sports, more specifically the analysis of data gathered from a remote controlled racecar while driving on a race track.
25+
26+
**Both the data as well as use case in this example originates from a real user of LightningChart JS** - TestLogger produces a complete data management and analytics system for RC cars and is one of our satisfied long-time partners. You can read more how they are able to take advantage of LightningChart JS in their craft at our [case study](https://www.arction.com/news/data-analytics-for-racing-testlogger-case-study-lightningchart/).
27+
28+
The TestLogger software gathers an immense amount of high precision data from the RC car in real-time - for example in this application, speed, steering and throttle information are visualized. Each measurement is paired with a location information, which tells where the RC car was located at the time of measurement.
29+
30+
Something that we found amazing was that the RC car location information is actually calculated in real-time by tracking the orientation and speed of the RC car itself - it is not relying on GPS or any other positioning system!
31+
32+
In this example, the RC car data is used to dynamically color the path of the RC car based on the selected data set. For example, when "Speed" is analyzed, low speeds are colored as white and high speeds are colored as red.
33+
34+
By looking at the produced visualization, bottlenecks in the race can be spotted easily even with the naked eye.
35+
36+
Dynamic line coloring is a powerful feature which can serve many different needs. The best thing about it is that it doesn't compromise performance, meaning that you can use it just as well with 100 data points or 100 million data points.
37+
38+
In addition to dynamic coloring by separate Value data set there are also more dynamic coloring modes available:
39+
40+
- [Line dynamic coloring by X coordinates](https://www.arction.com/lightningchart-js-interactive-examples/examples/lcjs-example-0050-linePaletteX.html)
41+
- [Line dynamic coloring by Y coordinates](https://www.arction.com/lightningchart-js-interactive-examples/examples/lcjs-example-0051-linePaletteY.html)
42+
43+
44+
## API Links
45+
46+
* [Chart XY]
47+
* [Axis]
48+
* [Line series]
49+
* [Paletted fill]
50+
* [Color lookup table]
51+
* [Color RGBA]
52+
* [Empty line style]
53+
* [Axis tick strategies]
54+
* [UI element builders]
55+
* [UI element origins]
56+
* [UI text box]
57+
58+
59+
## Support
60+
61+
If you notice an error in the example code, please open an issue on [GitHub][0] repository of the entire example.
62+
63+
Official [API documentation][1] can be found on [Arction][2] website.
64+
65+
If the docs and other materials do not solve your problem as well as implementation help is needed, ask on [StackOverflow][3] (tagged lightningchart).
66+
67+
If you think you found a bug in the LightningChart JavaScript library, please contact support@arction.com.
68+
69+
Direct developer email support can be purchased through a [Support Plan][4] or by contacting sales@arction.com.
70+
71+
[0]: https://github.com/Arction/
72+
[1]: https://www.arction.com/lightningchart-js-api-documentation/
73+
[2]: https://www.arction.com
74+
[3]: https://stackoverflow.com/questions/tagged/lightningchart
75+
[4]: https://www.arction.com/support-services/
76+
77+
© Arction Ltd 2009-2020. All rights reserved.
78+
79+
80+
[Chart XY]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/classes/chartxy.html
81+
[Axis]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/classes/axis.html
82+
[Line series]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/classes/lineseries.html
83+
[Paletted fill]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/classes/palettedfill.html
84+
[Color lookup table]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/classes/lut.html
85+
[Color RGBA]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/globals.html#colorrgba
86+
[Empty line style]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/globals.html#emptyline
87+
[Axis tick strategies]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/globals.html#axistickstrategies
88+
[UI element builders]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/globals.html#uielementbuilders
89+
[UI element origins]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/globals.html#uiorigins
90+
[UI text box]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/interfaces/uitextbox.html
91+

0 commit comments

Comments
 (0)