forked from trading-peter/chart-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchart-polar-area.js
More file actions
51 lines (40 loc) · 1.18 KB
/
chart-polar-area.js
File metadata and controls
51 lines (40 loc) · 1.18 KB
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
import { LitElement } from 'lit-element/lit-element.js';
import { ChartPropertyMixin } from './chart-property-mixin';
import { ContextMixin } from './context-mixin';
import { ResizeMixin } from './resize-mixin.js';
/**
Polar area charts are similar to pie charts, but each segment has the same angle - the radius of the segment differs depending on the value.
This type of chart is often useful when we want to show a comparison data similar to a pie chart, but also show a scale of values for context.
##### Example
<chart-polar-area data="{{data}}"></chart-polar-area>
...
this.data = {
datasets: [{
data: [
11,
16,
7,
],
backgroundColor: [
"#FF6384",
"#4BC0C0",
"#FFCE56",
],
label: 'My dataset' // for legend
}],
labels: [
"Red",
"Green",
"Yellow"
]
};
@group Chart Elements
@element chart-polar-area
*/
class ChartPolarArea extends ResizeMixin(ContextMixin(ChartPropertyMixin(LitElement))) {
constructor() {
super();
this.__type = 'polarArea';
}
}
window.customElements.define('chart-polar-area', ChartPolarArea);