alpha
Login
or
Join now
graphieros.npmx.social
/
tiny-spark
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/graphieros/tiny-spark. An elegant, reactive and responsive sparkline chart solution without dependency.
tiny-spark.graphieros.com/
chart
sparkline
universal
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Add missing data attribute
author
graphieros
date
1 year ago
(May 1, 2025, 4:39 PM +0200)
commit
e97327fb
e97327fb6048125fa712834130e489ed845d452b
parent
b45982e7
b45982e723a6ff7df5e95ed87de06681e3e07ff8
+4
-2
1 changed file
Expand all
Collapse all
Unified
Split
types
index.ts
+4
-2
types/index.ts
View file
Reviewed
···
49
49
HIDE_PLOTS_ABOVE = 'hidePlotsAbove',
50
50
SHOW_LAST_VALUE = 'showLastValue',
51
51
LAST_VALUE_FONT_SIZE = 'lastValueFontSize',
52
52
-
LAST_VALUE_COLOR = 'lastValueColor'
52
52
+
LAST_VALUE_COLOR = 'lastValueColor',
53
53
+
TYPE = 'type'
53
54
}
54
55
55
56
export enum ELEMENT_DATASET {
···
71
72
HIDE_PLOTS_ABOVE = 'data-hide-plots-above',
72
73
SHOW_LAST_VALUE = 'data-show-last-value',
73
74
LAST_VALUE_FONT_SIZE = 'data-last-value-font-size',
74
74
-
LAST_VALUE_COLOR = 'data-last-value-color'
75
75
+
LAST_VALUE_COLOR = 'data-last-value-color',
76
76
+
TYPE = 'data-type'
75
77
}