You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert

3
+

4
4
5
5
This demo application belongs to the set of examples for LightningChart JS, data visualization library for JavaScript.
6
6
7
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
8
9
9
The demo can be used as an example or a seed project. Local execution requires the following steps:
10
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:
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
13
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
16
16
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.
18
18
19
19
20
20
## Description
21
21
22
22
This example shows real-time OHLC-packing using a variant of OHLC-series.
23
23
24
+
## LightningChart JS OHLC Series with Automatic Packing
25
+
26
+
LightningChart JS includes a variant of the OHLC series which allows inputting close prices only which results in the corresponding OHLC data being automatically calculated.
27
+
24
28
```javascript
25
29
constchart=lightningChart().ChartXY()
26
30
constseries=chart.addOHLCSeries(
27
31
// Specify the type of OHLC-series for adding points
Supplied points are packed by columns, within which the Y-values are mapped to open, high, low and close -values, which are used to draw *OHLCFigures*.
52
+
Supplied points are packed by columns, within which the Y-values are mapped to open, high, low and close -values, which are used to draw _OHLCFigures_.
49
53
50
-
[//]: #"IMPORTANT: The assets will not show before README.md is built - relative path is different!"
54
+
[//]: #'IMPORTANT: The assets will not show before README.md is built - relative path is different!'
51
55
52
56

53
57
@@ -65,26 +69,26 @@ Supplied points are packed by columns, within which the Y-values are mapped to o
65
69
66
70
If you notice an error in the example code, please open an issue on [GitHub][0] repository of the entire example.
67
71
68
-
Official [API documentation][1] can be found on [Arction][2] website.
72
+
Official [API documentation][1] can be found on [LightningChart][2] website.
69
73
70
74
If the docs and other materials do not solve your problem as well as implementation help is needed, ask on [StackOverflow][3] (tagged lightningchart).
71
75
72
-
If you think you found a bug in the LightningChart JavaScript library, please contact support@arction.com.
76
+
If you think you found a bug in the LightningChart JavaScript library, please contact support@lightningchart.com.
73
77
74
-
Direct developer email support can be purchased through a [Support Plan][4] or by contacting sales@arction.com.
78
+
Direct developer email support can be purchased through a [Support Plan][4] or by contacting sales@lightningchart.com.
0 commit comments