-
Notifications
You must be signed in to change notification settings - Fork 46
/
px-vis-annotations.html
246 lines (206 loc) · 6.77 KB
/
px-vis-annotations.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
<!--
Copyright (c) 2018, General Electric
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<link rel="import" href="../polymer/polymer.html"/>
<link rel="import" href="px-vis-behavior-common.html" />
<link rel="import" href="px-vis-behavior-d3.html" />
<link rel="import" href="../px-icon-set/px-icon.html" />
<link rel="import" href="../px-icon-set/px-icon-set-communication.html" />
<link rel="import" href="css/px-vis-annotations-styles.html">
<!--
### Usage
<px-vis-svg
...
svg="{{svg}}">
</px-vis-svg>
<px-vis-scale
...
x="{{x}}"
y="{{y}}"
domain-changed="{{domainChanged}}">
</px-vis-scale>
<px-vis-annotations
svg="[[svg]]"
x="[[x]]"
y="[[y]]"
margin="[[margin]]"
domain-changed="[[domainChanged]]"
complete-series-config="[[completeSeriesConfig]]"
annotation-data="[[data]]">
</px-vis-annotations>
### Styling
The following custom properties are available for styling:
Custom property | Description
:----------------|:-------------
`--px-vis-annotations-icon-color` | Color of the annotation icon
`--px-vis-annotations-icon-fill` | Color of the fill of annotation icon
`--px-vis-annotations-icon-hover-fill` | Color of the fill of annotation icon when hovered
`--px-vis-annotations-icon-pressed-fill` | Color of the fill of annotation icon when pressed
@element px-vis-annotations
@blurb Element which draws annotations on a chart
@homepage index.html
@demo demo/index.html
-->
<dom-module id="px-vis-annotations">
<template>
<style include="px-vis-annotations-styles"></style>
<template id="template" is="dom-repeat" items="[[annotationData]]" as="item">
<px-icon
icon="px-com:comment"
data="[[item]]"
class$="annotation--icon [[strongClass]]"
style$="[[_getTransform(item, x, y, domainChanged, completeSeriesConfig, forceRecalc, hide)]]"
on-mouseover="_mouseOver"
on-mouseleave="_mouseLeave"
on-click="_mouseClick"
on-mouseenter="_mouseEnter"
on-mouseout="_mouseOut">
</px-icon>
</template>
</template>
</dom-module>
<script>
Polymer({
is: 'px-vis-annotations',
behaviors: [
PxVisBehavior.observerCheck,
PxVisBehavior.sizing,
PxVisBehaviorD3.svg,
PxVisBehavior.annotationData
],
/**
* Fired when the mouse enters an annotation icon (mouseenter event)
*
* @event px-vis-annotation-enter
*/
/**
* Fired when the mouse out an annotation icon (mouseout event)
*
* @event px-vis-annotation-out
*/
/**
* Fired when the mouse hovers an annotation icon (mouseover event)
*
* @event px-vis-annotation-over
*/
/**
* Fired when the mouse leave an annotation icon (mouseleave event)
*
* @event px-vis-annotation-leave
*/
/**
* Fired when a click happens on an annotation icon (click event)
*
* @event px-vis-annotation-click
*/
/**
* Fired when a click happens on the chart requesting the creation
* of an annotation. !! this event is defined by the toolbar !!
*
* this event detail will contain the following `data` object:
* data: {
* chart: the chart responsible for this interaction
* clickTarget: the actual interaction target that has been clicked. Usually an axis interaction space (parallell coordinates/radar) or an interaction space
* mouseCoords: the coordinates of the mouse relative to the clickTarget
* }
*
* the mouse coordinates can be converted to data values by calling
* `getDataFromPixel(mouseCoords, series)` on the chart. `series` is
* a series which scale will be used to convert (a `seriesConfig` series
* for xy/timeseries/polar or an axes for parallel coordinates/radar)
*
* @event px-vis-annotation-creation
*/
/**
* Properties block, expose attribute values to the DOM via 'reflect'
*
* @property properties
* @type Object
*/
properties: {
_iconWidth: {
type: Number,
value: 12
},
_iconHeight: {
type: Number,
value: 12
},
/**
* when switched forces the annotations to recalculate their position
*/
forceRecalc: {
type: Boolean,
value: false
},
/**
* Whether the annotations should be hidden
*/
hide: {
type: Boolean,
value: false
},
strongClass: {
type: String,
value: '',
computed: '_computeStrongClass(showStrongIcon)'
}
}, //properties
_computeStrongClass: function(strong) {
return strong ? 'strong' : '';
},
_getTransform: function(item) {
if(this.hasUndefinedArguments(arguments)) {
return;
}
var coords,
oob;
if(this.hide) {
return 'display:none';
}
//ask the chart scale to convert those data values to pixels
this.fire('px-vis-request-pixel-for-data', {callback: function(info) {
coords = info.pixel;
oob = info.outOfBounds;
}.bind(this), data: [item.x, item.y], series: item.series, margin: this.margin}
);
//out of bounds or
//some coords might be NaN if the series doesn't exist, just hide
if(oob || isNaN(coords[0]) || isNaN(coords[1])) {
return 'display: none';
} else {
coords[0] -= this._iconWidth/2;
coords[1] -= this._iconHeight;
return 'transform: translate(' + Math.floor(coords[0]) + 'px,' + Math.floor(coords[1]) + 'px)';
}
},
_mouseOver: function(evt) {
this._requestAnnotation(evt, 'over');
},
_mouseLeave: function(evt) {
this._requestAnnotation(evt, 'leave');
},
_mouseClick: function(evt) {
this._requestAnnotation(evt, 'click');
},
_mouseEnter: function(evt) {
this._requestAnnotation(evt, 'enter');
},
_mouseOut: function(evt) {
this._requestAnnotation(evt, 'out');
},
_requestAnnotation: function(evt, eventName) {
var target = Polymer.dom(evt).localTarget;
this.fire('px-vis-event-request', {'eventName': 'px-vis-annotation-' + eventName, 'data': {'annotationData': this.$.template.itemForElement(target), 'icon': target}});
}
});
</script>