forked from predixdesignsystem/px-vis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
px-vis-line-canvas.html
334 lines (284 loc) · 10.3 KB
/
px-vis-line-canvas.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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
<!--
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="css/px-vis-styles.html">
<!--
### Usage
<px-vis-svg-canvas
width="[[width]]"
height="[[height]]"
margin="[[margin]]"
canvas-context="{{canvasContext}}">
</px-vis-svg-canvas>
<px-vis-scale
x-axis-type="time"
y-axis-type="linear"
complete-series-config="[[seriesConfig]]"
data-extents="[[dataExtents]]"
width="[[width]]"
height="[[height]]"
margin="[[margin]]"
chart-data={{chartData}}
x="{{x}}"
y="{{y}}"
domainChanged="{{domainChanged}}"
selected-domain="[[selectedDomain]]">
</px-vis-scale>
<px-vis-line-canvas
series-id="mySeries"
complete-series-config="[[seriesConfig]]"
chart-data="[[chartData]]"
x="[[x]]"
y="[[y]]"
width="[[width]]"
height="[[height]]"
margin="[[margin]]"
canvas-context="[[canvasContext]]"
domain-changed="[[domainChanged]]">
</px-vis-line-canvas>
@element px-vis-line
@blurb Element which draws lines series onto the chart
@homepage index.html
@demo demo.html
-->
<dom-module id="px-vis-line-canvas">
<template>
<style include="px-vis-styles"></style>
</template>
</dom-module>
<script>
Polymer({
is: 'px-vis-line-canvas',
behaviors: [
PxVisBehaviorD3.canvasContext,
PxVisBehaviorD3.lineShared,
PxVisBehaviorD3.axes,
PxVisBehavior.sizing,
PxVisBehavior.dataset,
PxVisBehavior.mutedSeries,
PxVisBehavior.commonMethods,
PxVisBehavior.completeSeriesConfig,
PxVisBehavior.categories,
PxVisBehaviorD3.selectedDomain,
PxVisBehavior.serieToRedrawOnTop,
PxVisBehaviorD3.domainUpdate,
PxVisBehavior.preventInitialDrawing,
PxVisBehavior.isAttached,
PxVisBehavior.polarData,
PxVisBehavior.rendererType,
PxVisBehaviorD3.clipPathBoolean,
PxVisBehavior.dynamicConfigProperties
],
/**
* Properties block, expose attribute values to the DOM via 'reflect'
*
* @property properties
* @type Object
*/
properties: {
/**
* The opacity value of the fill to be used when muting a series (stroke is not drawn on mute).
*/
mutedOpacity: {
type: Number,
value: 0.3
},
/**
* Holder for clipPath data.
*/
_clipData: {
type: Array
},
strokeWidth: {
type: Number,
value: 1
},
/**
* Options currently in use for drawing lines: opacity, color, etc.
*/
_currentDrawingOptions: {
type: Object,
value:function() {
return {};
}
}
},
observers: [
'_priorityChanged(priority)'
],
ready: function() {
this._watchConfigProperty('priority', 0);
this._watchConfigProperty('strokeWidth', 1);
},
attached: function() {
this.fire('px-vis-renderer-register', {'type': 'line', 'renderMode': 'canvas', 'rendererType': this.rendererType, 'priority': this.priority});
},
detached: function() {
this.fire('px-vis-renderer-unregister',{'renderMode': 'canvas','rendererType': this.rendererType});
},
_priorityChanged: function() {
this.fire('px-vis-renderer-update-target-props', {'propertyName': 'priority', 'propertyValue': this.priority ,'rendererType': this.rendererType});
},
/**
* Defines the appropriate line generator and updates drawing
* variables: opacity, colors, etc.
*/
initializeDrawingSession: function() {
//create our line generator
if(this.parallelCoordinates) {
this._defineMultiLine(true);
} else if(this.radialLine) {
this._defineRadialLine(true, this.multiPath, this.counterClockwise, this.useDegrees);
} else {
this._defineSingleLine(true);
}
//make sure we have the right muted opacity
this._currentDrawingOptions.mutedOpacity = this.completeSeriesConfig[this.seriesId].mutedOpacity || this.completeSeriesConfig[this.seriesId].mutedOpacity === 0 ?
this.completeSeriesConfig[this.seriesId].mutedOpacity : this.mutedOpacity;
this._currentDrawingOptions.strokeWidth = this.strokeWidth;
//render differently depending on the type of line
if(this.gradientLine || this.categoryKey) {
//gradient line
this._currentDrawingOptions.getColorValue = function(d) {
var opacity = this._isSerieMuted(d) ? this._currentDrawingOptions.mutedOpacity : 1;
if(opacity !== 0) {
return this._getLineColor(d);
} else {
return null;
}
}.bind(this);
}
},
/**
* Draws a clip path for canvas.
*
* @method drawClipPath
*/
drawClipPath: function() {
/* not sure why this if statement bandaid is needed
if you have chartData with all the same value (such as all 0) and some axes and you clear axes first, then clear chartData
(not chartData and then axes), then reload the same data and axes (order doesnt matter), series do not plot.
Clearly related to the clip path, but cannot isolate.
If you load data that is not 100% 0, or change the chartData or axes on reload, doesnt happen.
This if statement prevents clipPath from running under these circumstances and everything is fine
*/
//TODO: extend for polar
if(this.chartData && this.chartData.length > 0 && this.completeSeriesConfig[this.seriesId]["x"].length > 0) {
if(this.radialLine) {
this._drawRadarClipPath();
} else {
this._drawRectClipPath();
}
}
},
/**
* Draws a clip path for radar.
*/
_drawRadarClipPath: function() {
//start off resetting our saved canvas
this._generateRadarClipData();
this.canvasContext.beginPath();
this.line(this._clipData[0]);
this.line(this._clipData[1]);
this.canvasContext.clip("evenodd");
},
/**
* Draws a rectangular clip path for cartesian charts.
*/
_drawRectClipPath: function() {
this.canvasContext.beginPath();
var w = Math.max(this.width - this.margin.left - this.margin.right,0),
h = Math.max(this.height - this.margin.top - this.margin.bottom,0);
this.canvasContext.rect(0, 0, w, h);
this.canvasContext.clip();
},
/**
* Generates the edges for the radar clip path.
*
* @method _generateRadarClipPath
*/
_generateRadarClipData: function() {
var clipData = [{},{}];
for(var i = 0; i < this.completeSeriesConfig[this.seriesId]['x'].length; i++) {
clipData[0][ this.completeSeriesConfig[this.seriesId]['x'][i] ] = this.y.domain()[0];
clipData[1][ this.completeSeriesConfig[this.seriesId]['x'][i] ] = this.y.domain()[1];
}
this._clipData = clipData;
},
renderOneBatch: function(start, stop) {
var data;
this.canvasContext.lineWidth = this._currentDrawingOptions.strokeWidth
this.canvasContext.lineCap = "square";
this.canvasContext.save();
if(this.clipPath) {
this.drawClipPath();
}
if(!this.multiPath) {
//for single line we have to slice the array to pass it to the line function
data = this.chartData.slice(start, stop);
}
if(this.gradientLine || this.categoryKey) {
var color;
//strike line by line since a gradient and or color is applied
//for multipath because each point is 1 line no need to slice the array,
//just access each point by the appropriate index
for(var i = start; i < stop; i++) {
color = this._currentDrawingOptions.getColorValue(this.chartData[i]);
opacity = this._isSerieMuted(this.chartData[i]) ? this._currentDrawingOptions.mutedOpacity : 1;
if(color) {
this.canvasContext.beginPath();
this.canvasContext.strokeStyle = color;
this.canvasContext.globalAlpha = opacity;
this.line(this.chartData[i]);
this.canvasContext.stroke();
}
}
} else {
this.canvasContext.beginPath();
if(!this.multiPath) {
opacity = this._isSerieMuted(data) ? this._currentDrawingOptions.mutedOpacity : 1;
if(opacity !== 0) {
this.canvasContext.globalAlpha = opacity;
this.line(data);
}
} else {
//for multipath because each point is 1 line no need to slice the array,
//just access each point by the appropriate index
for(var i = start; i < stop; i++) {
opacity = this._isSerieMuted(this.chartData[i]) ? this._currentDrawingOptions.mutedOpacity : 1;
if(opacity !== 0) {
this.line(this.chartData[i]);
}
}
}
var dashPattern = this.completeSeriesConfig[this.seriesId] && this.completeSeriesConfig[this.seriesId]["dashPattern"] ? this.completeSeriesConfig[this.seriesId]["dashPattern"] : '';
dashPattern = JSON.parse('[' + dashPattern +']');
this.canvasContext.setLineDash(dashPattern);
//only strike once
this.canvasContext.strokeStyle = this.completeSeriesConfig[this.seriesId]['color'];
this.canvasContext.globalAlpha = opacity;
this.canvasContext.stroke();
}
this.canvasContext.restore();
},
_isSerieMuted: function(d) {
if(this.multiPath) {
return this.mutedSeries[d[this.seriesId]] ? true : false;
} else {
return this.mutedSeries[this.seriesId] ? true : false;
}
}
});
</script>