Skip to content

Commit 27bd77e

Browse files
author
Niilo Keinänen
committed
v5.2.0
1 parent bb27b32 commit 27bd77e

File tree

2 files changed

+36
-36
lines changed

2 files changed

+36
-36
lines changed

README.md

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# JavaScript Spectrogram XY-Projection Chart
2-
3-
![JavaScript Spectrogram XY-Projection Chart](spectrogramProjection-darkGold.png)
4-
1+
# JavaScript Spectrogram XY-Projection Chart
2+
3+
![JavaScript Spectrogram XY-Projection Chart](spectrogramProjection-darkGold.png)
4+
55
This demo application belongs to the set of examples for LightningChart JS, data visualization library for JavaScript.
66

77
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.
@@ -15,19 +15,19 @@ The demo can be used as an example or a seed project. Local execution requires t
1515
npm start # builds an application and starts the development server
1616

1717
- 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-
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]
@@ -38,10 +38,10 @@ The spectrogram chart contains 1024 x 1024 = ~1 million data points.
3838
* [Empty line style]
3939
* [Legend Box]
4040
* [Legend Box builders]
41-
42-
43-
## Support
44-
41+
42+
43+
## Support
44+
4545
If you notice an error in the example code, please open an issue on [GitHub][0] repository of the entire example.
4646

4747
Official [API documentation][1] can be found on [LightningChart][2] website.
@@ -57,18 +57,18 @@ Direct developer email support can be purchased through a [Support Plan][4] or b
5757
[2]: https://lightningchart.com
5858
[3]: https://stackoverflow.com/questions/tagged/lightningchart
5959
[4]: https://lightningchart.com/support-services/
60-
60+
6161
© LightningChart Ltd 2009-2022. All rights reserved.
62-
63-
64-
[Dashboard]: https://lightningchart.com/js-charts/api-documentation/v5.1.0/classes/Dashboard.html
65-
[XY cartesian chart]: https://lightningchart.com/js-charts/api-documentation/v5.1.0/classes/ChartXY.html
66-
[Heatmap Grid Series Intensity]: https://lightningchart.com/js-charts/api-documentation/v5.1.0/classes/HeatmapGridSeriesIntensityValues.html
67-
[Line Series]: https://lightningchart.com/js-charts/api-documentation/v5.1.0/classes/LineSeries.html
68-
[Axis scroll strategies]: https://lightningchart.com/js-charts/api-documentation/v5.1.0/variables/AxisScrollStrategies.html
69-
[Paletted Fill]: https://lightningchart.com/js-charts/api-documentation/v5.1.0/classes/PalettedFill.html
70-
[LUT]: https://lightningchart.com/js-charts/api-documentation/v5.1.0/classes/LUT.html
71-
[Empty line style]: https://lightningchart.com/js-charts/api-documentation/v5.1.0/variables/emptyLine.html
72-
[Legend Box]: https://lightningchart.com/js-charts/api-documentation/v5.1.0/classes/Chart.html#addLegendBox
73-
[Legend Box builders]: https://lightningchart.com/js-charts/api-documentation/v5.1.0/variables/LegendBoxBuilders.html
74-
62+
63+
64+
[Dashboard]: https://lightningchart.com/js-charts/api-documentation/v5.2.0/classes/Dashboard.html
65+
[XY cartesian chart]: https://lightningchart.com/js-charts/api-documentation/v5.2.0/classes/ChartXY.html
66+
[Heatmap Grid Series Intensity]: https://lightningchart.com/js-charts/api-documentation/v5.2.0/classes/HeatmapGridSeriesIntensityValues.html
67+
[Line Series]: https://lightningchart.com/js-charts/api-documentation/v5.2.0/classes/LineSeries.html
68+
[Axis scroll strategies]: https://lightningchart.com/js-charts/api-documentation/v5.2.0/variables/AxisScrollStrategies.html
69+
[Paletted Fill]: https://lightningchart.com/js-charts/api-documentation/v5.2.0/classes/PalettedFill.html
70+
[LUT]: https://lightningchart.com/js-charts/api-documentation/v5.2.0/classes/LUT.html
71+
[Empty line style]: https://lightningchart.com/js-charts/api-documentation/v5.2.0/variables/emptyLine.html
72+
[Legend Box]: https://lightningchart.com/js-charts/api-documentation/v5.2.0/classes/Chart.html#addLegendBox
73+
[Legend Box builders]: https://lightningchart.com/js-charts/api-documentation/v5.2.0/variables/LegendBoxBuilders.html
74+

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"webpack-stream": "^7.0.0"
1818
},
1919
"dependencies": {
20-
"@arction/lcjs": "^5.1.1",
20+
"@arction/lcjs": "^5.2.0",
2121
"@arction/xydata": "^1.4.0"
2222
},
2323
"lightningChart": {

0 commit comments

Comments
 (0)