Skip to content

Commit 7846c0c

Browse files
committed
LCJS 4.0.1
1 parent 4fa70a7 commit 7846c0c

11 files changed

+276
-263
lines changed

.github/workflows/gh-pages-deploy.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,28 @@ name: Webpack build to GitHub Pages
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [master]
66

77
jobs:
88
build:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v2
1313

14-
- name: Use Node.js 16.x
15-
uses: actions/setup-node@v1
16-
with:
17-
node-version: '16.x'
14+
- name: Use Node.js 16.x
15+
uses: actions/setup-node@v1
16+
with:
17+
node-version: "16.x"
1818

19-
- name: Build
20-
run: |
21-
npm install
22-
npm run build
19+
- name: Build
20+
run: |
21+
npm install
22+
npm run build
2323
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
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

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 LightningChart Ltd.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# JavaScript Spectrogram XY-Projection Chart
22

3-
![JavaScript Spectrogram XY-Projection Chart](spectrogramProjection.png)
3+
![JavaScript Spectrogram XY-Projection Chart](spectrogramProjection-darkGold.png)
44

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.
88

99
The demo can be used as an example or a seed project. Local execution requires the following steps:
1010

11-
- Make sure that relevant version of [Node.js](https://nodejs.org/en/download/) is installed
12-
- Open the project folder in a terminal:
11+
- Make sure that relevant version of [Node.js](https://nodejs.org/en/download/) is installed
12+
- Open the project folder in a terminal:
1313

14-
npm install # fetches dependencies
15-
npm start # builds an application and starts the development server
14+
npm install # fetches dependencies
15+
npm start # builds an application and starts the development server
1616

17-
- The application is available at *http://localhost:8080* in your browser, webpack-dev-server provides hot reload functionality.
17+
- The application is available at _http://localhost:8080_ in your browser, webpack-dev-server provides hot reload functionality.
1818

1919

2020
## Description
@@ -45,32 +45,32 @@ The spectrogram chart contains 1024 x 1024 = ~1 million data points.
4545

4646
If you notice an error in the example code, please open an issue on [GitHub][0] repository of the entire example.
4747

48-
Official [API documentation][1] can be found on [Arction][2] website.
48+
Official [API documentation][1] can be found on [LightningChart][2] website.
4949

5050
If the docs and other materials do not solve your problem as well as implementation help is needed, ask on [StackOverflow][3] (tagged lightningchart).
5151

52-
If you think you found a bug in the LightningChart JavaScript library, please contact support@arction.com.
52+
If you think you found a bug in the LightningChart JavaScript library, please contact support@lightningchart.com.
5353

54-
Direct developer email support can be purchased through a [Support Plan][4] or by contacting sales@arction.com.
54+
Direct developer email support can be purchased through a [Support Plan][4] or by contacting sales@lightningchart.com.
5555

5656
[0]: https://github.com/Arction/
57-
[1]: https://www.arction.com/lightningchart-js-api-documentation/
58-
[2]: https://www.arction.com
57+
[1]: https://lightningchart.com/lightningchart-js-api-documentation/
58+
[2]: https://lightningchart.com
5959
[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-
65-
[Dashboard]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/classes/dashboard.html
66-
[XY cartesian chart]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/classes/chartxy.html
67-
[Heatmap Grid Series Intensity]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/classes/heatmapgridseriesintensityvalues.html
68-
[Line Series]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/classes/lineseries.html
69-
[Axis scroll strategies]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/globals.html#axisscrollstrategies
70-
[Paletted Fill]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/classes/palettedfill.html
71-
[LUT]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/classes/lut.html
72-
[Empty line style]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/globals.html#emptyline
73-
[Legend Box]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/classes/chartxy.html#addlegendbox
74-
[Legend Box builders]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/globals.html#legendboxbuilders
75-
[Translate point]: https://www.arction.com/lightningchart-js-api-documentation/v3.4.0/globals.html#translatepoint
60+
[4]: https://lightningchart.com/support-services/
61+
62+
© LightningChart Ltd 2009-2022. All rights reserved.
63+
64+
65+
[Dashboard]: https://lightningchart.com/lightningchart-js-api-documentation/v4.0.0/classes/Dashboard.html
66+
[XY cartesian chart]: https://lightningchart.com/lightningchart-js-api-documentation/v4.0.0/classes/ChartXY.html
67+
[Heatmap Grid Series Intensity]: https://lightningchart.com/lightningchart-js-api-documentation/v4.0.0/classes/HeatmapGridSeriesIntensityValues.html
68+
[Line Series]: https://lightningchart.com/lightningchart-js-api-documentation/v4.0.0/classes/LineSeries.html
69+
[Axis scroll strategies]: https://lightningchart.com/lightningchart-js-api-documentation/v4.0.0/variables/AxisScrollStrategies.html
70+
[Paletted Fill]: https://lightningchart.com/lightningchart-js-api-documentation/v4.0.0/classes/PalettedFill.html
71+
[LUT]: https://lightningchart.com/lightningchart-js-api-documentation/v4.0.0/classes/LUT.html
72+
[Empty line style]: https://lightningchart.com/lightningchart-js-api-documentation/v4.0.0/variables/emptyLine.html
73+
[Legend Box]: https://lightningchart.com/lightningchart-js-api-documentation/v4.0.0/classes/Chart.html#addLegendBox
74+
[Legend Box builders]: https://lightningchart.com/lightningchart-js-api-documentation/v4.0.0/variables/LegendBoxBuilders.html
75+
[Translate point]: https://lightningchart.com/lightningchart-js-api-documentation/v4.0.0/functions/translatePoint.html
7676

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"build": "webpack --mode production",
55
"start": "webpack serve"
66
},
7-
"license": "Custom",
7+
"license": "MIT",
88
"private": true,
99
"main": "./src/index.js",
1010
"devDependencies": {
@@ -17,7 +17,7 @@
1717
"webpack-stream": "^7.0.0"
1818
},
1919
"dependencies": {
20-
"@arction/lcjs": "^3.4.0",
20+
"@arction/lcjs": "^4.0.1",
2121
"@arction/xydata": "^1.4.0"
2222
},
2323
"lightningChart": {
958 KB
Loading

spectrogramProjection-darkGold.png

875 KB
Loading

spectrogramProjection-light.png

848 KB
Loading
841 KB
Loading
986 KB
Loading

0 commit comments

Comments
 (0)