Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cesium2s
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
clients
Cesium-grp
cesium2s
Merge requests
!27
Add charts to currency page
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add charts to currency page
feature/test_dorian
into
develop
Overview
0
Commits
23
Pipelines
9
Changes
25
Merged
Dorian Marco
requested to merge
feature/test_dorian
into
develop
3 months ago
Overview
0
Commits
23
Pipelines
9
Changes
25
Expand
0
0
Merge request reports
Compare
develop
version 8
b2cea670
3 months ago
version 7
a849cd7c
3 months ago
version 6
f929dff4
3 months ago
version 5
b770987e
3 months ago
version 4
932db0b8
3 months ago
version 3
f46036c5
3 months ago
version 2
c7048d2e
3 months ago
version 1
f918dadd
3 months ago
develop (base)
and
latest version
latest version
91aabc9f
23 commits,
3 months ago
version 8
b2cea670
21 commits,
3 months ago
version 7
a849cd7c
13 commits,
3 months ago
version 6
f929dff4
11 commits,
3 months ago
version 5
b770987e
9 commits,
3 months ago
version 4
932db0b8
8 commits,
3 months ago
version 3
f46036c5
6 commits,
3 months ago
version 2
c7048d2e
5 commits,
3 months ago
version 1
f918dadd
4 commits,
3 months ago
25 files
+
972
−
86
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
25
Search (e.g. *.vue) (Ctrl+P)
src/app/currency/currency-history.model.ts
0 → 100644
+
40
−
0
Options
import
{
Moment
}
from
'
moment/moment
'
;
export
class
CurrencyHistory
{
constructor
(
membersCount
?:
number
,
blockNumber
?:
number
,
timestamp
?:
Date
,
monetaryMass
?:
number
)
{
this
.
membersCount
=
membersCount
;
this
.
blockNumber
=
blockNumber
;
this
.
timestamp
=
timestamp
;
this
.
monetaryMass
=
monetaryMass
;
}
membersCount
:
number
;
blockNumber
:
number
;
timestamp
:
Date
;
monetaryMass
:
number
;
}
export
interface
CurrencyHistoryFilter
{
before
?:
Moment
;
after
?:
Moment
;
}
export
class
ChartMembers
{
constructor
(
dataPoints
:
DataChart
[],
label
:
string
)
{
this
.
dataPoints
=
dataPoints
;
this
.
label
=
label
;
}
type
:
string
;
dataPoints
:
DataChart
[];
label
:
string
;
}
export
class
DataChart
{
constructor
(
x
:
string
,
y
:
string
)
{
this
.
x
=
x
;
this
.
y
=
y
;
}
x
:
string
;
y
:
string
;
}
Loading