-
Notifications
You must be signed in to change notification settings - Fork 13
/
nvd3-pie.html
226 lines (203 loc) · 4.99 KB
/
nvd3-pie.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
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="nvd3-behavior.html">
<!--
An element to create pie chart using nvd3.
Example:
<nvd3-pie
data="[[data]]"
height="100"
width="400"
auto-resize
show-legend></nvd3-pie>
Data Format:
```
[
{
"label": "label 1",
"value": 69
},
{
"label": "label 2",
"value": 85
}
]
```
@group NVD3 Elements
@element nvd3-pie
@demo demo/nvd3-pie.html
@hero hero.svg
-->
<dom-module id="nvd3-pie">
<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-pie',
behaviors: [NVD3.ChartBehavior],
properties: {
/**
* NVD3 chart object.
*/
_chart: {
type: Object,
value: function() {
var that = this;
return nv.models.pieChart()
.x(function(d) {
return d[that.xProp];
})
.y(function(d) {
return d[that.yProp];
});
}
},
/**
* Configurable x-axis property key
*/
xProp: {
type: String,
value: 'label'
},
/**
* Configurable y-axis property key
*/
yProp: {
type: String,
value: 'value'
},
/**
* Show pie chart 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
},
/**
* Disable the tooltip
*/
disableTooltip: {
type: Boolean,
value: false
},
/**
* Whether the labels should be outside of pie
*/
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: [
'_selectionChanged(selection.splices)'
],
ready: function() {
this._chart.pie.dispatch.on('elementClick', this._onSliceClick.bind(this));
},
/**
* Observer for labelsOutside
*/
_labelsOutsideChanged: function () {
this._chart.labelsOutside(this.labelsOutside);
},
_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>