-
Notifications
You must be signed in to change notification settings - Fork 13
/
nvd3-donut.html
263 lines (234 loc) · 5.76 KB
/
nvd3-donut.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="nvd3-behavior.html">
<!--
An element to create donut chart using nvd3.
Example:
<nvd3-donut
data="[[data]]"
height="300"
width="400"
auto-resize
show-legend
donut-ratio="0.25"></nvd3-donut>
Data Format:
```
[
{
"label": "label 1",
"value": 69
},
{
"label": "label 2",
"value": 85
}
]
```
@group NVD3 Elements
@element nvd3-donut
@demo demo/nvd3-donut.html
@hero hero.svg
-->
<dom-module id="nvd3-donut">
<template>
<style include="nvd3-shared-styles">
#svg .nv-slice {
transform: scale(1);
transition: 0.1s ease-in-out;
}
#svg .nv-slice.selected {
transform: scale(1.1);
}
</style>
<!-- We need to put svg tag inside a div to set correct margins -->
<div>
<svg id="svg"></svg>
</div>
</template>
<script>
Polymer({
is: 'nvd3-donut',
behaviors: [NVD3.ChartBehavior],
properties: {
/**
* NVD3 chart object.
*/
_chart: {
type: Object,
value: function() {
return nv.models.pieChart()
.x(function(d) {
return d[this.xProp];
}.bind(this))
.y(function(d) {
return d[this.yProp];
}.bind(this))
.donut(true);
}
},
/**
* Configurable x-axis property key
*/
xProp: {
type: String,
value: 'label'
},
/**
* Configurable y-axis property key
*/
yProp: {
type: String,
value: 'value'
},
/**
* Configure how big you want the donut hole size to be.
*/
donutRatio: {
type: Number,
value: 0.5
},
/**
* Show labels for each slice
*/
showLabels: {
type: Boolean,
value: false
},
/**
* Whether to display the legend or not
*/
showLegend: {
type: Boolean,
value: false
},
/**
* Whether to increase slice radius on hover or not
*/
growOnHover: {
type: Boolean,
value: false
},
/**
* Text to include within the middle of a donut chart
*/
title: {
type: String
},
/**
* Disable the tooltip
*/
disableTooltip: {
type: Boolean,
value: false
},
/**
* Whether the labels should be outside of donut
*/
labelsOutside: {
type: Boolean,
value: false,
observer: '_labelsOutsideChanged'
},
/**
* Container for selected slices
*/
selection: {
type: Object,
notify: true
},
/**
* Whether possible to selected several slices
*/
multiSelection: {
type: Boolean,
observer: '_multiSelectionChanged'
},
/**
* NVD3 components which are used in this chart.
* It's required for binding events.
*/
_components: {
type: Array,
value: ['legend', 'pie', 'tooltip']
}
},
/**
* Fired when a slice is selected
* @event slice-selected
*/
observers: [
'_setDonutRatio(donutRatio)',
'_setTitle(title)',
'_selectionChanged(selection.splices)'
],
/**
* Observer for setting donut ratio.
*/
_setDonutRatio: function(donutRatio) {
this._chart.donutRatio(this.donutRatio);
},
/**
* Observer for setting title.
*/
_setTitle: function(title) {
this._chart.title(this.title);
},
/**
* Observer for labelsOutside
*/
_labelsOutsideChanged: function () {
this._chart.labelsOutside(this.labelsOutside);
},
ready: function() {
this._chart.pie.dispatch.on('elementClick', this._onSliceClick.bind(this));
},
/**
* Listener for elementClick
*/
_onSliceClick: function(item) {
var previousElement = item.element.parentElement.querySelector('.nv-slice.selected');
if (this.multiSelection) {
if (this.selection.indexOf(item.data) > -1) {
this.splice('selection', this.selection.indexOf(item.data), 1);
item.element.classList.remove('selected');
} else {
this.push('selection', item.data);
item.element.classList.add('selected');
}
} else {
this.selection = item.data;
if (previousElement !== null) {
previousElement.classList.remove('selected');
}
item.element.classList.add('selected');
}
},
/**
* Observer for multiSelection
*/
_multiSelectionChanged: function(newValue, oldValue) {
if (newValue) {
if (this.selection === undefined) {
this.selection = [];
} else if (!(this.selection instanceof Array)) {
this.selection = [this.selection];
}
} else {
if (this.selection instanceof Array) {
var selectedSlices = this.svg.querySelectorAll('.nv-slice.selected'),
i;
for (i = 0; i < selectedSlices.length; i += 1) {
selectedSlices[i].classList.remove('selected');
}
this.selection = [];
}
}
},
/**
* Observer for selection
*/
_selectionChanged: function() {
this.fire('slice-selected', this.selection);
}
});
</script>
</dom-module>