Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions BoilerPlates/angular/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,8 @@
}
}
}
},
"cli": {
"analytics": false
}
}
8 changes: 4 additions & 4 deletions BoilerPlates/angular/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BoilerPlates/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@angular/platform-browser": "^20.1.0",
"@angular/router": "^20.1.0",
"rxjs": "~7.8.0",
"scichart": "^4.0.0-beta.804",
"scichart": "^4.0.848",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
Expand Down
2 changes: 1 addition & 1 deletion BoilerPlates/blazor/SciChartDemo.Client/JsLib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"start": "webpack-dev-server"
},
"dependencies": {
"scichart": "latest"
"scichart": "^4.0.848"
},
"devDependencies": {
"copy-webpack-plugin": "^6.0.3",
Expand Down
8 changes: 4 additions & 4 deletions BoilerPlates/electron/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BoilerPlates/electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@
"dependencies": {
"copy-webpack-plugin": "^11.0.0",
"electron-squirrel-startup": "^1.0.0",
"scichart": "^4.0.0-beta.788"
"scichart": "^4.0.848"
}
}
8 changes: 4 additions & 4 deletions BoilerPlates/javascript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BoilerPlates/javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"webpack-dev-server": "^4.7.3"
},
"dependencies": {
"scichart": "^4.0.0-beta.788"
"scichart": "^4.0.848"
}
}
8 changes: 4 additions & 4 deletions BoilerPlates/next/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BoilerPlates/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"next": "^14.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"scichart": "^4.0.0-beta.788"
"scichart": "^4.0.848"
},
"devDependencies": {
"@types/node": "^18.15.10",
Expand Down
8 changes: 4 additions & 4 deletions BoilerPlates/nuxt/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BoilerPlates/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"copy-files-from-to": "^3.8.0",
"scichart": "^4.0.0-beta.788",
"scichart": "^4.0.848",
"nuxt": "^3.11.2",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
Expand Down
8 changes: 4 additions & 4 deletions BoilerPlates/react-typescript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BoilerPlates/react-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"scichart": "^4.0.0-beta.788",
"scichart": "^4.0.848",
"ts-node": "^10.9.1"
},
"devDependencies": {
Expand Down
5 changes: 4 additions & 1 deletion BoilerPlates/react-vite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,10 @@ function App() {
return (
<div>
<h1>SciChart with React + Vite</h1>
<SciChartReact config={chartConfig} style={{ width: 900 }} />
<SciChartReact
config={chartConfig}
style={{ width: "900px", height: "600px" }}
/>
</div>
);
}
Expand Down
18 changes: 9 additions & 9 deletions BoilerPlates/react-vite/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions BoilerPlates/react-vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"scichart": "^4.0.0-beta.788",
"scichart-react": "^0.1.13",
"scichart": "^4.0.848",
"scichart-react": "^1.0.0",
"vite-plugin-static-copy": "^1.0.4"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion BoilerPlates/react-vite/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function App() {
<h1>SciChart with React + Vite</h1>

<SciChartReact
style={{ width: 900 }}
style={{ width: "900px", height: "600px" }}
// This is for our useBuilderAPI config (uncomment and comment `initChart` to see)
// config={{
// type: ESciChartSurfaceType.Default2D,
Expand Down
22 changes: 11 additions & 11 deletions BoilerPlates/scichart-angular/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions BoilerPlates/scichart-angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"@angular/router": "^17.3.0",
"copy-files-from-to": "^3.8.0",
"rxjs": "~7.8.0",
"scichart": "^4.0.0-beta.804",
"scichart-angular": "^0.0.2",
"scichart": "^4.0.848",
"scichart-angular": "^0.0.3",
"tslib": "^2.6.2",
"zone.js": "~0.14.4"
},
Expand Down
8 changes: 4 additions & 4 deletions BoilerPlates/scichart-react/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BoilerPlates/scichart-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"scichart": "^4.0.0-beta.734",
"scichart": "^4.0.848",
"scichart-react": "^0.2.0-beta.2"
}
}
Loading