Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SCAL-215269] added sample custom leaflet chart #48

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
67095a9
package-lock.json merge conflict resolved.
UtkarshRai12 Jul 18, 2024
1386283
[SCAL-215269] added example for custom-leaflet-chart
UtkarshRai12 Jul 26, 2024
33c8fd9
refactoring of geo-charts.ts
UtkarshRai12 Aug 7, 2024
b3cddaf
linting error removed
UtkarshRai12 Aug 9, 2024
c260677
change prePublish command key to prePublishOnly for auto init
abey-thomas Jul 18, 2024
1f1b0f1
[SCAL-209485] modify property name columnAggregationType to aggregati…
abey-thomas Jul 19, 2024
63eb461
[SCAL-213900] add custom order property for columns
abey-thomas Jul 22, 2024
6ac998a
SCAL-192741 added enum to support custom style config and color pallete
harshmeetTS Jul 21, 2024
4bd5253
updated key id to guid
harshmeetTS Jul 22, 2024
8a96ebd
updated type marking guid required
harshmeetTS Jul 22, 2024
f724aa3
updated comments
harshmeetTS Jul 22, 2024
3d070a9
bump alpha version to 0.0.2-alpha.6
abey-thomas Jul 22, 2024
67afeeb
[SCAL-216889] improve test coverage for ts-chart-sdk
abey-thomas Jul 26, 2024
1e1691d
updated visualProps type to unknown for stricter type checking
harshmeetTS Jul 28, 2024
b926ec7
remove unwanted remark
harshmeetTS Jul 28, 2024
ce4b6c5
updated custom bar chart with all latest features
harshmeetTS Jul 29, 2024
2bebe9e
version bump for chart sdk
harshmeetTS Jul 29, 2024
d1a8c79
resolved PR comments
harshmeetTS Jul 30, 2024
b1252e9
bump version custom chart
harshmeetTS Jul 31, 2024
77e0e26
bump version custom chart in package-lock
harshmeetTS Jul 31, 2024
2fe0183
Added Date formatting utils to support Custom Calender
yashvardhan-n Jul 30, 2024
89c6120
updated package version
yashvardhan-n Jul 31, 2024
fe6bbe6
SCAL-218113 Added CustomerId
yashvardhan-n Aug 6, 2024
bc28223
updated pakcage.json
yashvardhan-n Aug 6, 2024
d1dea8f
[SCAL-211470] add support for measure names and values
abey-thomas Aug 5, 2024
f1bf93a
update publish script to use valid tag for dev and prod
abey-thomas Aug 8, 2024
4f548cb
release 0.0.2-alpha.10 as latest
abey-thomas Aug 9, 2024
1d407db
review changes resolved
UtkarshRai12 Aug 14, 2024
26a98a7
Merge branch 'main' into SCAL-215269-ts-chart-sdk-onboarding-and-samp…
UtkarshRai12 Aug 16, 2024
32ca42d
fixed package-lock.json changes rises due to merge conflict
UtkarshRai12 Aug 19, 2024
dfb8765
Merge branch 'main' into SCAL-215269-ts-chart-sdk-onboarding-and-samp…
UtkarshRai12 Aug 20, 2024
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
16 changes: 16 additions & 0 deletions example/custom-leaflet-chart/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TS custom chart</title>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="./leaflet/leaflet.css" />
</head>
<body>
<div style="width: 100vw; height: 100vh; position: relative">
<div id="map"></div>
</div>
<script type="module" src="./src/geo-charts.ts"></script>
</body>
</html>
Loading
Loading