Skip to content

Commit

Permalink
Merge pull request #139 from proteus-h2020/development
Browse files Browse the repository at this point in the history
Release 0.0.5
  • Loading branch information
jorgeyp authored Jan 16, 2017
2 parents 6963bb3 + 304f026 commit 4549ca8
Show file tree
Hide file tree
Showing 157 changed files with 9,434 additions and 11,450 deletions.
22 changes: 19 additions & 3 deletions CHANGELOG.md
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:
49 changes: 49 additions & 0 deletions dist/proteic.css
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; }
6,237 changes: 2,272 additions & 3,965 deletions dist/proteic.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/proteic.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/proteic.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 4549ca8

Please sign in to comment.