File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed
Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -62,9 +62,9 @@ Direct developer email support can be purchased through a [Support Plan][4] or b
6262© LightningChart Ltd 2009-2022. All rights reserved.
6363
6464
65- [ Axis tick strategies ] : https://lightningchart.com/js-charts/api-documentation/v7.1 .0/variables/AxisTickStrategies.html
66- [ XY cartesian chart ] : https://lightningchart.com/js-charts/api-documentation/v7.1 .0/classes/ChartXY.html
67- [ OHLC series types ] : https://lightningchart.com/js-charts/api-documentation/v7.1 .0/variables/OHLCSeriesTypes.html
68- [ Series with automatic packing ] : https://lightningchart.com/js-charts/api-documentation/v7.1 .0/classes/OHLCSeriesWithAutomaticPacking.html
65+ [ Axis tick strategies ] : https://lightningchart.com/js-charts/api-documentation/v8.0 .0/variables/AxisTickStrategies.html
66+ [ XY cartesian chart ] : https://lightningchart.com/js-charts/api-documentation/v8.0 .0/classes/ChartXY.html
67+ [ OHLC series types ] : https://lightningchart.com/js-charts/api-documentation/v8.0 .0/variables/OHLCSeriesTypes.html
68+ [ Series with automatic packing ] : https://lightningchart.com/js-charts/api-documentation/v8.0 .0/classes/OHLCSeriesWithAutomaticPacking.html
6969[ Progressive trace generator ] : https://lightning-chart.github.io/xydata/classes/progressivetracegenerator.html
7070
Original file line number Diff line number Diff line change 1717 "webpack-stream" : " ^7.0.0"
1818 },
1919 "dependencies" : {
20- "@lightningchart/lcjs" : " ^7.1 .0" ,
21- "@lightningchart/xydata" : " ^1.4 .0"
20+ "@lightningchart/lcjs" : " ^8.0 .0" ,
21+ "@lightningchart/xydata" : " ^1.5 .0"
2222 },
2323 "lightningChart" : {
2424 "eID" : " 0203"
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ const dashboard = lightningChart({
2323 resourcesBaseUrl : new URL ( document . head . baseURI ) . origin + new URL ( document . head . baseURI ) . pathname + 'resources/' ,
2424 } ) . Dashboard ( { numberOfColumns : 1 , numberOfRows : 2 } )
2525const chartDefault = dashboard . createChartXY ( {
26+ legend : { visible : false } ,
2627 columnIndex : 0 ,
2728 rowIndex : 0 ,
2829 theme : Themes [ new URLSearchParams ( window . location . search ) . get ( 'theme' ) || 'darkGold' ] || undefined ,
@@ -43,6 +44,7 @@ chartDefault.setPadding({
4344chartDefault . getDefaultAxisY ( ) . setTitle ( 'USD' )
4445
4546const chartLow = dashboard . createChartXY ( {
47+ legend : { visible : false } ,
4648 columnIndex : 0 ,
4749 rowIndex : 1 ,
4850 // theme: Themes.darkGold
@@ -77,7 +79,7 @@ const seriesLow = chartLow
7779 . setName ( 'Very small packing resolution' )
7880 // Set packing resolution that is equal to the minimum resolution between two points.
7981 // (essentially allows users to zoom to full resolution)
80- . setPackingResolution ( dataFrequency )
82+ // .setPackingResolution(dataFrequency)
8183
8284createProgressiveTraceGenerator ( ) // Generating random progressive xy data
8385 . setNumberOfPoints ( dataSpan / dataFrequency )
You can’t perform that action at this time.
0 commit comments