c3-rails 0.4.10 → 0.4.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitmodules +1 -1
- data/README.md +2 -2
- data/lib/c3/rails/version.rb +1 -1
- data/vendor/assets/javascripts/c3.js +1322 -169
- data/vendor/assets/stylesheets/c3.css +13 -4
- metadata +3 -3
@@ -1,6 +1,7 @@
|
|
1
1
|
/*-- Chart --*/
|
2
2
|
.c3 svg {
|
3
|
-
font: 10px sans-serif;
|
3
|
+
font: 10px sans-serif;
|
4
|
+
-webkit-tap-highlight-color: transparent; }
|
4
5
|
|
5
6
|
.c3 path, .c3 line {
|
6
7
|
fill: none;
|
@@ -11,7 +12,11 @@
|
|
11
12
|
-moz-user-select: none;
|
12
13
|
user-select: none; }
|
13
14
|
|
14
|
-
.c3-legend-item-tile,
|
15
|
+
.c3-legend-item-tile,
|
16
|
+
.c3-xgrid-focus,
|
17
|
+
.c3-ygrid,
|
18
|
+
.c3-event-rect,
|
19
|
+
.c3-bars path {
|
15
20
|
shape-rendering: crispEdges; }
|
16
21
|
|
17
22
|
.c3-chart-arc path {
|
@@ -70,11 +75,11 @@
|
|
70
75
|
/*-- Region --*/
|
71
76
|
.c3-region {
|
72
77
|
fill: steelblue;
|
73
|
-
fill-opacity:
|
78
|
+
fill-opacity: .1; }
|
74
79
|
|
75
80
|
/*-- Brush --*/
|
76
81
|
.c3-brush .extent {
|
77
|
-
fill-opacity:
|
82
|
+
fill-opacity: .1; }
|
78
83
|
|
79
84
|
/*-- Select - Drag --*/
|
80
85
|
/*-- Legend --*/
|
@@ -90,6 +95,10 @@
|
|
90
95
|
stroke: lightgray;
|
91
96
|
stroke-width: 1; }
|
92
97
|
|
98
|
+
/*-- Title --*/
|
99
|
+
.c3-title {
|
100
|
+
font: 14px sans-serif; }
|
101
|
+
|
93
102
|
/*-- Tooltip --*/
|
94
103
|
.c3-tooltip-container {
|
95
104
|
z-index: 10; }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: c3-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sunny Li
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-05-07 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: This gem provides "c3 - A D3-based reusable chart library" for Rails
|
14
14
|
email:
|
@@ -47,7 +47,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
47
47
|
version: '0'
|
48
48
|
requirements: []
|
49
49
|
rubyforge_project:
|
50
|
-
rubygems_version: 2.
|
50
|
+
rubygems_version: 2.5.1
|
51
51
|
signing_key:
|
52
52
|
specification_version: 4
|
53
53
|
summary: c3 js chart library for Rails
|