Skip to content

Commit 92ae591

Browse files
committed
Smart UI R1 2023
1 parent 48e1007 commit 92ae591

File tree

9,221 files changed

+533575
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

9,221 files changed

+533575
-0
lines changed

3d-chart-ohlc.png

34.4 KB
Loading

3d-chart-waterfall.png

32.5 KB
Loading

3d-chart.png

38.2 KB
Loading

angular-demos/angular.json

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"bargauge": {
7+
"projectType": "application",
8+
"root": "",
9+
"architect": {
10+
"build": {
11+
"builder": "@angular-devkit/build-angular:browser",
12+
"options": {
13+
"assets": [],
14+
"baseHref": "/",
15+
"outputPath": "dist/editor/editor-methods",
16+
"index": "demos/editor/editor-methods/index.htm",
17+
"main": "src/editor/editor-methods/main.ts",
18+
"polyfills": "polyfills.ts",
19+
"tsConfig": "tsconfig.app.json",
20+
"styles": [
21+
"node_modules/smart-webcomponents-angular/source/styles/smart.default.css"
22+
]
23+
},
24+
"configurations": {
25+
"production": {
26+
"optimization": false,
27+
"sourceMap": false,
28+
"namedChunks": false,
29+
"aot": true,
30+
"extractLicenses": false,
31+
"vendorChunk": false,
32+
"buildOptimizer": false
33+
}
34+
}
35+
},
36+
"serve": {
37+
"builder": "@angular-devkit/build-angular:dev-server",
38+
"options": {
39+
"browserTarget": "bargauge:build"
40+
},
41+
"configurations": {
42+
"production": {
43+
"browserTarget": "bargauge:build:production"
44+
},
45+
"staging": {
46+
"browserTarget": "bargauge:build:staging"
47+
}
48+
}
49+
},
50+
"test": {
51+
"builder": "@angular-devkit/build-angular:karma",
52+
"options": {
53+
"codeCoverage": true,
54+
"main": "test.ts",
55+
"polyfills": "polyfills.ts",
56+
"tsConfig": "tsconfig.spec.json",
57+
"karmaConfig": "karma.conf.js",
58+
"assets": [
59+
{
60+
"glob": "**/*",
61+
"input": "node_modules/smart-webcomponents-angular/source",
62+
"output": "src/test/assets"
63+
},
64+
"src/test/assets"
65+
],
66+
"styles": [
67+
"node_modules/smart-webcomponents-angular/source/styles/smart.default.css"
68+
],
69+
"scripts": []
70+
}
71+
}
72+
}
73+
}
74+
}
75+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title id='Description'>Angular ThreeDChart 100 Stacked Area Series | ThreeDChart | https://www.htmlelements.com/</title>
5+
<base href="./../../../dist/3d-chart/100-stacked-area-series/">
6+
<meta charset="UTF-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<link rel="stylesheet" href="styles.css" type="text/css" />
9+
<script type="text/javascript" src="https://www.htmlelements.com/demos/scripts/three.js"></script>
10+
</head>
11+
<body>
12+
<app-root>Loading...</app-root>
13+
14+
<script src="runtime.js" type="module"></script>
15+
<script src="polyfills.js" type="module"></script>
16+
17+
<script src="main.js" type="module"></script>
18+
19+
</body>
20+
</html>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title id='Description'>Angular ThreeDChart 100 Stacked Column Series | ThreeDChart | https://www.htmlelements.com/</title>
5+
<base href="./../../../dist/3d-chart/100-stacked-column-series/">
6+
<meta charset="UTF-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<link rel="stylesheet" href="styles.css" type="text/css" />
9+
<script type="text/javascript" src="https://www.htmlelements.com/demos/scripts/three.js"></script>
10+
</head>
11+
<body>
12+
<app-root>Loading...</app-root>
13+
14+
<script src="runtime.js" type="module"></script>
15+
<script src="polyfills.js" type="module"></script>
16+
17+
18+
<script src="main.js" type="module"></script>
19+
20+
</body>
21+
</html>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title id='Description'>Angular ThreeDChart 100 Stacked Line Series | ThreeDChart | https://www.htmlelements.com/</title>
5+
<base href="./../../../dist/3d-chart/100-stacked-line-series/">
6+
<meta charset="UTF-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<link rel="stylesheet" href="styles.css" type="text/css" />
9+
<script type="text/javascript" src="https://www.htmlelements.com/demos/scripts/three.js"></script>
10+
</head>
11+
<body>
12+
<app-root>Loading...</app-root>
13+
14+
<script src="runtime.js" type="module"></script>
15+
<script src="polyfills.js" type="module"></script>
16+
17+
18+
<script src="main.js" type="module"></script>
19+
20+
</body>
21+
</html>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title id='Description'>Angular ThreeDChart Advanced Chart Legend | ThreeDChart | https://www.htmlelements.com/</title>
5+
<base href="./../../../dist/3d-chart/advanced-chart-legend/">
6+
<meta charset="UTF-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<link rel="stylesheet" href="styles.css" type="text/css" />
9+
<script type="text/javascript" src="https://www.htmlelements.com/demos/scripts/three.js"></script>
10+
</head>
11+
<body>
12+
<app-root>Loading...</app-root>
13+
14+
<script src="runtime.js" type="module"></script>
15+
<script src="polyfills.js" type="module"></script>
16+
17+
18+
<script src="main.js" type="module"></script>
19+
20+
</body>
21+
</html>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title id='Description'>Angular ThreeDChart Area Series | ThreeDChart | https://www.htmlelements.com/</title>
5+
<base href="./../../../dist/3d-chart/area-series/">
6+
<meta charset="UTF-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<link rel="stylesheet" href="styles.css" type="text/css" />
9+
</head>
10+
<body>
11+
<app-root>Loading...</app-root>
12+
13+
<script src="runtime.js" type="module"></script>
14+
<script src="polyfills.js" type="module"></script>
15+
16+
17+
<script src="main.js" type="module"></script>
18+
19+
</body>
20+
</html>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title id='Description'>Angular ThreeDChart Background styling | ThreeDChart | https://www.htmlelements.com/</title>
5+
<base href="./../../../dist/3d-chart/background-styling/">
6+
<meta charset="UTF-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<link rel="stylesheet" href="styles.css" type="text/css" />
9+
</head>
10+
<body>
11+
<app-root>Loading...</app-root>
12+
13+
<script src="runtime.js" type="module"></script>
14+
<script src="polyfills.js" type="module"></script>
15+
16+
17+
<script src="main.js" type="module"></script>
18+
19+
</body>
20+
</html>

0 commit comments

Comments
 (0)