Skip to content

Commit 64de987

Browse files
committed
1 parent 392af78 commit 64de987

File tree

5 files changed

+360
-363
lines changed

5 files changed

+360
-363
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
node_modules
2-
dist
1+
node_modules
2+
dist
33
package-lock.json

README.md

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
1-
# JavaScript Spectrogram XY-Projection Chart
2-
3-
![JavaScript Spectrogram XY-Projection Chart](spectrogramProjection.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-
This example shows how to create a 2D spectrogram chart with X and Y line projections over last mouse coordinate (custom interaction).
23-
24-
Every time the user moves mouse over the spectrogram 1024 + 1024 data points are picked from the data set and pushed to X and Y projections line series - this is an expensive operation, but handled really fast with calls to `LineSeries.clear().add(data)`.
25-
26-
The spectrogram chart contains 1024 x 1024 = ~1 million data points.
27-
28-
29-
## API Links
30-
1+
# JavaScript Spectrogram XY-Projection Chart
2+
3+
![JavaScript Spectrogram XY-Projection Chart](spectrogramProjection.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+
This example shows how to create a 2D spectrogram chart with X and Y line projections over last mouse coordinate (custom interaction).
23+
24+
Every time the user moves mouse over the spectrogram 1024 + 1024 data points are picked from the data set and pushed to X and Y projections line series - this is an expensive operation, but handled really fast with calls to `LineSeries.clear().add(data)`.
25+
26+
The spectrogram chart contains 1024 x 1024 = ~1 million data points.
27+
28+
29+
## API Links
30+
3131
* [Dashboard]
3232
* [XY cartesian chart]
3333
* [Heatmap Grid Series Intensity]
@@ -39,29 +39,29 @@ The spectrogram chart contains 1024 x 1024 = ~1 million data points.
3939
* [Legend Box]
4040
* [Legend Box builders]
4141
* [Translate point]
42-
43-
44-
## Support
45-
46-
If you notice an error in the example code, please open an issue on [GitHub][0] repository of the entire example.
47-
48-
Official [API documentation][1] can be found on [Arction][2] website.
49-
50-
If the docs and other materials do not solve your problem as well as implementation help is needed, ask on [StackOverflow][3] (tagged lightningchart).
51-
52-
If you think you found a bug in the LightningChart JavaScript library, please contact support@arction.com.
53-
54-
Direct developer email support can be purchased through a [Support Plan][4] or by contacting sales@arction.com.
55-
56-
[0]: https://github.com/Arction/
57-
[1]: https://www.arction.com/lightningchart-js-api-documentation/
58-
[2]: https://www.arction.com
59-
[3]: https://stackoverflow.com/questions/tagged/lightningchart
60-
[4]: https://www.arction.com/support-services/
61-
62-
© Arction Ltd 2009-2020. All rights reserved.
63-
64-
42+
43+
44+
## Support
45+
46+
If you notice an error in the example code, please open an issue on [GitHub][0] repository of the entire example.
47+
48+
Official [API documentation][1] can be found on [Arction][2] website.
49+
50+
If the docs and other materials do not solve your problem as well as implementation help is needed, ask on [StackOverflow][3] (tagged lightningchart).
51+
52+
If you think you found a bug in the LightningChart JavaScript library, please contact support@arction.com.
53+
54+
Direct developer email support can be purchased through a [Support Plan][4] or by contacting sales@arction.com.
55+
56+
[0]: https://github.com/Arction/
57+
[1]: https://www.arction.com/lightningchart-js-api-documentation/
58+
[2]: https://www.arction.com
59+
[3]: https://stackoverflow.com/questions/tagged/lightningchart
60+
[4]: https://www.arction.com/support-services/
61+
62+
© Arction Ltd 2009-2020. All rights reserved.
63+
64+
6565
[Dashboard]: https://www.arction.com/lightningchart-js-api-documentation/v3.1.0/classes/dashboard.html
6666
[XY cartesian chart]: https://www.arction.com/lightningchart-js-api-documentation/v3.1.0/classes/chartxy.html
6767
[Heatmap Grid Series Intensity]: https://www.arction.com/lightningchart-js-api-documentation/v3.1.0/classes/heatmapgridseriesintensityvalues.html
@@ -73,4 +73,4 @@ Direct developer email support can be purchased through a [Support Plan][4] or b
7373
[Legend Box]: https://www.arction.com/lightningchart-js-api-documentation/v3.1.0/classes/chartxy.html#addlegendbox
7474
[Legend Box builders]: https://www.arction.com/lightningchart-js-api-documentation/v3.1.0/globals.html#legendboxbuilders
7575
[Translate point]: https://www.arction.com/lightningchart-js-api-documentation/v3.1.0/globals.html#translatepoint
76-
76+

package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
{
2-
"version": "1.0.1",
3-
"scripts": {
4-
"build": "webpack --mode production",
5-
"start": "webpack-dev-server"
6-
},
7-
"license": "Custom",
8-
"private": true,
9-
"main": "./src/index.js",
10-
"devDependencies": {
11-
"copy-webpack-plugin": "^6.0.2",
12-
"html-webpack-plugin": "^3.2.0",
13-
"webpack-cli": "^3.3.10",
14-
"webpack-dev-server": "^3.9.0"
15-
},
16-
"dependencies": {
17-
"@arction/lcjs": "^3.2.0",
18-
"@arction/xydata": "^1.4.0",
19-
"clean-webpack-plugin": "^3.0.0",
20-
"webpack": "^4.41.2",
21-
"webpack-stream": "^5.2.1"
22-
}
23-
}
1+
{
2+
"version": "1.0.1",
3+
"scripts": {
4+
"build": "webpack --mode production",
5+
"start": "webpack-dev-server"
6+
},
7+
"license": "Custom",
8+
"private": true,
9+
"main": "./src/index.js",
10+
"devDependencies": {
11+
"copy-webpack-plugin": "^6.0.2",
12+
"html-webpack-plugin": "^3.2.0",
13+
"webpack-cli": "^3.3.10",
14+
"webpack-dev-server": "^3.9.0"
15+
},
16+
"dependencies": {
17+
"@arction/lcjs": "^3.2.0",
18+
"@arction/xydata": "^1.4.0",
19+
"clean-webpack-plugin": "^3.0.0",
20+
"webpack": "^4.41.2",
21+
"webpack-stream": "^5.2.1"
22+
}
23+
}

0 commit comments

Comments
 (0)