forked from trading-peter/chart-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chart-line.html
79 lines (62 loc) · 2.17 KB
/
chart-line.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
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../iron-resizable-behavior/iron-resizable-behavior.html">
<link rel="import" href="chart-js-import.html">
<link rel="import" href="chart-property-behavior.html">
<link rel="import" href="context-behavior.html">
<link rel="import" href="resize-behavior.html">
<!--
A line chart is a way of plotting data points on a line.
Often, it is used to show trend data, and the comparison of two data sets.
##### Example
<chart-line data="[[data]]"></chart-line>
...
this.data = {
labels: ["January", "February", "March", "April", "May", "June", "July"],
datasets: [
{
label: "My First dataset",
backgroundColor: "rgba(220,220,220,0.2)",
borderColor: "rgba(220,220,220,1)",
borderWidth: 1,
pointBackgroundColor: "rgba(220,220,220,1)",
pointBorderColor: "#fff",
pointHoverBackgroundColor: "#fff",
pointHoverBorderColor: "rgba(220,220,220,1)",
data: [65, 59, 80, 81, 56, 55, 40]
},
{
label: "My Second dataset",
backgroundColor: "rgba(151,187,205,0.2)",
borderColor: "rgba(151,187,205,1)",
borderWidth: 1,
pointBackgroundColor: "rgba(151,187,205,1)",
pointBorderColor: "#fff",
pointHighlightFill: "#fff",
pointHoverBorderColor: "rgba(151,187,205,1)",
data: [28, 48, 40, 19, 86, 27, 90]
}
]
};
@group Chart Elements
@element chart-line
@demo demo/chart-line.html
-->
<link rel="import" href="chart-styles.html">
<dom-module id="chart-line">
<template>
<style include="chart-styles"></style>
<div>
<canvas id="canvas"></canvas>
</div>
</template>
<script>
class ChartLine extends ChartBehaviors.ResizeBehavior(ChartBehaviors.ContextBehavior(ChartBehaviors.ChartPropertyBehavior(Polymer.mixinBehaviors([Polymer.IronResizableBehavior], Polymer.Element)))) {
static get is() { return 'chart-line'; }
ready() {
super.ready();
this._setType('line');
}
};
window.customElements.define(ChartLine.is, ChartLine);
</script>
</dom-module>