-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139 from proteus-h2020/development
Release 0.0.5
- Loading branch information
Showing
157 changed files
with
9,434 additions
and
11,450 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,29 @@ | ||
# 0.0.3 (2013-11-03) | ||
# 0.0.5 (2017-01-16) | ||
* Add pie chart | ||
* Improve responsive behaviour | ||
* Add configurable data keys | ||
* Add canvas scatterplot | ||
* Add network chart | ||
* Add example showcasing all the available charts | ||
* Migrate codebase to TypeScript | ||
* Add ts module definition | ||
* Lots of bugfixes and improvements | ||
|
||
# 0.0.4 (2016-11-06) | ||
* Add streaming scatterplot example | ||
* Add minified version | ||
* Some minor bug fixes | ||
|
||
# 0.0.3 (2016-11-03) | ||
* Add scatterplot. | ||
* Modify gauge and swimlane data formats | ||
* Add HTTPDatasource | ||
* Minor fixes and improvements | ||
|
||
# 0.0.2 (2013-10-24) | ||
# 0.0.2 (2016-10-24) | ||
* Fixed a bug with xAxisFormat in websocket streamgraph (#5c3d35d) | ||
* Minor bugfixes | ||
* Fixed code style issues and other minor changes | ||
|
||
# 0.0.1 (2013-10-17) | ||
# 0.0.1 (2016-10-17) | ||
First release of Proteic. :tada: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
.proteic .axis text { | ||
font: 1.4em Montserrat, sans-serif; } | ||
|
||
.proteic .x.axis path { | ||
stroke: #dbdad8; | ||
stroke-width: 2px; | ||
opacity: 1; } | ||
|
||
.proteic .x.axis line { | ||
stroke-dasharray: 1, 5; } | ||
|
||
.proteic .x.axis .tick:nth-of-type(even) line { | ||
stroke: #5e6b70; } | ||
|
||
.proteic .x.axis .tick:nth-of-type(even) text { | ||
fill: #1a2127; } | ||
|
||
.proteic .x.axis.linear .tick:nth-of-type(odd) text { | ||
fill: #5e6b70; } | ||
|
||
.proteic .x.axis.linear .tick:nth-of-type(odd) line { | ||
stroke: #dbdad8; } | ||
|
||
.proteic .y.axis path { | ||
display: none; } | ||
|
||
.proteic .y.axis .tick:nth-child(even) line { | ||
stroke: #5e6b70; } | ||
|
||
.proteic .y.axis .tick:nth-child(even) text { | ||
fill: #1a2127; } | ||
|
||
.proteic .y.axis .tick:nth-child(odd) text { | ||
fill: #5e6b70; } | ||
|
||
.proteic .y.axis .tick:nth-child(odd) line { | ||
stroke: #dbdad8; } | ||
|
||
.proteic .y.axis .tick line { | ||
stroke-dasharray: 1, 5; } | ||
|
||
.text-indicator { | ||
white-space: nowrap; | ||
overflow: hidden; } | ||
.text-indicator .value { | ||
font: 2em Montserrat, sans-serif; } | ||
.text-indicator .label { | ||
font: 1em Montserrat, sans-serif; | ||
text-overflow: ellipsis; } |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.