@easyv/charts 1.4.21 → 1.4.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (90) hide show
  1. package/.babelrc +8 -8
  2. package/.husky/commit-msg +3 -3
  3. package/CHANGELOG.md +18 -18
  4. package/commitlint.config.js +1 -1
  5. package/lib/components/AnimateData.js +8 -16
  6. package/lib/components/Axis.js +106 -138
  7. package/lib/components/Background.js +18 -26
  8. package/lib/components/Band.js +105 -91
  9. package/lib/components/BaseLine.js +33 -46
  10. package/lib/components/Brush.js +29 -46
  11. package/lib/components/Carousel.js +13 -40
  12. package/lib/components/CartesianChart.js +292 -113
  13. package/lib/components/Chart.js +23 -36
  14. package/lib/components/ChartContainer.js +21 -29
  15. package/lib/components/ConicalGradient.js +56 -89
  16. package/lib/components/Control.js +65 -0
  17. package/lib/components/ExtentData.js +9 -17
  18. package/lib/components/FilterData.js +16 -27
  19. package/lib/components/Indicator.js +66 -12
  20. package/lib/components/Label.js +128 -118
  21. package/lib/components/Legend.js +41 -66
  22. package/lib/components/Lighter.js +21 -50
  23. package/lib/components/Line.js +39 -59
  24. package/lib/components/LinearGradient.js +16 -22
  25. package/lib/components/Mapping.js +9 -34
  26. package/lib/components/Marquee.js +14 -30
  27. package/lib/components/PieChart.js +312 -406
  28. package/lib/components/StackData.js +8 -18
  29. package/lib/components/StereoBar.js +65 -105
  30. package/lib/components/TextOverflow.js +8 -21
  31. package/lib/components/Tooltip.js +41 -55
  32. package/lib/components/index.js +7 -27
  33. package/lib/context/index.js +0 -2
  34. package/lib/css/index.module.css +42 -42
  35. package/lib/css/piechart.module.css +26 -26
  36. package/lib/element/ConicGradient.js +29 -35
  37. package/lib/element/Line.js +9 -13
  38. package/lib/element/index.js +0 -2
  39. package/lib/formatter/index.js +0 -2
  40. package/lib/formatter/legend.js +30 -41
  41. package/lib/hooks/index.js +0 -9
  42. package/lib/hooks/useAiData.js +12 -20
  43. package/lib/hooks/useAnimateData.js +8 -21
  44. package/lib/hooks/useAxes.js +69 -115
  45. package/lib/hooks/useCarouselAxisX.js +47 -68
  46. package/lib/hooks/useExtentData.js +14 -46
  47. package/lib/hooks/useFilterData.js +13 -34
  48. package/lib/hooks/useStackData.js +12 -35
  49. package/lib/hooks/useTooltip.js +37 -54
  50. package/lib/index.js +0 -15
  51. package/lib/utils/index.js +95 -247
  52. package/package.json +55 -55
  53. package/src/components/Axis.tsx +223 -183
  54. package/src/components/Background.tsx +61 -61
  55. package/src/components/Band.tsx +274 -239
  56. package/src/components/Brush.js +159 -159
  57. package/src/components/CartesianChart.js +320 -44
  58. package/src/components/Chart.js +99 -99
  59. package/src/components/ChartContainer.tsx +71 -64
  60. package/src/components/ConicalGradient.js +258 -258
  61. package/src/components/Control.jsx +51 -0
  62. package/src/components/ExtentData.js +17 -17
  63. package/src/components/Indicator.js +61 -13
  64. package/src/components/Label.js +275 -242
  65. package/src/components/Legend.js +165 -165
  66. package/src/components/Lighter.jsx +173 -173
  67. package/src/components/Line.js +150 -150
  68. package/src/components/LinearGradient.js +29 -29
  69. package/src/components/PieChart.js +8 -4
  70. package/src/components/StereoBar.tsx +307 -307
  71. package/src/components/index.js +57 -55
  72. package/src/context/index.js +2 -2
  73. package/src/css/index.module.css +42 -42
  74. package/src/css/piechart.module.css +26 -26
  75. package/src/element/ConicGradient.jsx +55 -55
  76. package/src/element/Line.tsx +33 -33
  77. package/src/element/index.ts +3 -3
  78. package/src/formatter/index.js +1 -1
  79. package/src/formatter/legend.js +92 -92
  80. package/src/hooks/index.js +20 -20
  81. package/src/hooks/useAnimateData.ts +67 -67
  82. package/src/hooks/useAxes.js +9 -2
  83. package/src/hooks/useCarouselAxisX.js +35 -18
  84. package/src/hooks/useFilterData.js +72 -72
  85. package/src/hooks/useStackData.js +101 -101
  86. package/src/hooks/useTooltip.ts +100 -100
  87. package/src/index.js +6 -6
  88. package/src/types/index.d.ts +67 -67
  89. package/src/utils/index.js +757 -757
  90. package/tsconfig.json +23 -23
@@ -1,64 +1,71 @@
1
- /**
2
- * svg外框
3
- */
4
- import React, {
5
- memo,
6
- forwardRef,
7
- ReactChild,
8
- ReactEventHandler,
9
- LegacyRef,
10
- } from 'react';
11
- const event = () => {};
12
-
13
- type Props = {
14
- width: number;
15
- height: number;
16
- marginLeft: number;
17
- marginTop: number;
18
- style: Object;
19
- children: ReactChild;
20
- onMouseEnter: ReactEventHandler;
21
- onMouseLeave: ReactEventHandler;
22
- onClick: ReactEventHandler;
23
- onMouseMove: ReactEventHandler;
24
- onMouseOut: ReactEventHandler;
25
- };
26
-
27
- export default memo(
28
- forwardRef(
29
- (
30
- {
31
- width,
32
- height,
33
- marginLeft,
34
- marginTop,
35
- style,
36
- children,
37
- onMouseEnter = event,
38
- onMouseLeave = event,
39
- onClick = event,
40
- onMouseMove = event,
41
- onMouseOut = event,
42
- }: Props,
43
- ref: LegacyRef<SVGSVGElement>
44
- ) =>
45
- {
46
- return <svg
47
- className='__easyv-svg'
48
- width={width}
49
- height={height}
50
- onMouseEnter={onMouseEnter}
51
- onMouseLeave={onMouseLeave}
52
- onMouseOut={onMouseOut}
53
- onClick={onClick}
54
- onMouseMove={onMouseMove}
55
- ref={ref}
56
- style={{ position: 'absolute', width, height, ...style }}
57
- >
58
- <g transform={'translate(' + marginLeft + ', ' + marginTop + ')'}>
59
- {children}
60
- </g>
61
- </svg>
62
- }
63
- )
64
- );
1
+ /**
2
+ * svg外框
3
+ */
4
+ import React, {
5
+ memo,
6
+ forwardRef,
7
+ ReactChild,
8
+ ReactEventHandler,
9
+ LegacyRef,
10
+ } from "react";
11
+ const event = () => {};
12
+
13
+ type Props = {
14
+ width: number;
15
+ height: number;
16
+ marginLeft: number;
17
+ marginTop: number;
18
+ style: Object;
19
+ children: ReactChild;
20
+ onMouseEnter: ReactEventHandler;
21
+ onMouseLeave: ReactEventHandler;
22
+ onClick: ReactEventHandler;
23
+ onMouseMove: ReactEventHandler;
24
+ onMouseOut: ReactEventHandler;
25
+ };
26
+
27
+ export default memo(
28
+ forwardRef(
29
+ (
30
+ {
31
+ width,
32
+ height,
33
+ marginLeft,
34
+ marginTop,
35
+ style,
36
+ children,
37
+ onMouseEnter = event,
38
+ onMouseLeave = event,
39
+ onClick = event,
40
+ onMouseMove = event,
41
+ onMouseOut = event,
42
+ }: Props,
43
+ ref: LegacyRef<SVGSVGElement>
44
+ ) => {
45
+ return (
46
+ <svg
47
+ className="__easyv-svg"
48
+ width={width}
49
+ height={height}
50
+ onMouseEnter={onMouseEnter}
51
+ onMouseLeave={onMouseLeave}
52
+ onMouseOut={onMouseOut}
53
+ onClick={onClick}
54
+ onMouseMove={onMouseMove}
55
+ ref={ref}
56
+ style={{
57
+ overflow: "visible",
58
+ position: "absolute",
59
+ width,
60
+ height,
61
+ ...style,
62
+ }}
63
+ >
64
+ <g transform={"translate(" + marginLeft + ", " + marginTop + ")"}>
65
+ {children}
66
+ </g>
67
+ </svg>
68
+ );
69
+ }
70
+ )
71
+ );
@@ -1,258 +1,258 @@
1
- /**
2
- * 饼图装饰内圈
3
- */
4
- import React, { useEffect, useState } from 'react';
5
- import { arc } from 'd3v7';
6
- import { converColor } from '@easyv/utils/lib/common/utils';
7
- import css from '../css/index.module.css';
8
-
9
- export default ({
10
- width,
11
- height,
12
- centerX,
13
- centerY,
14
- radius,
15
- config: { show, innerRadius, outerRadius, opacity, speed, direction },
16
- arcs,
17
- }) => {
18
- if (!show) return null;
19
- const [canvas, setCanvas] = useState(null);
20
-
21
- useEffect(() => {
22
- if (arcs && arcs.length > 0 && canvas && canvas.getContext('2d')) {
23
- const _radius = radius * devicePixelRatio;
24
- const context = canvas.getContext('2d');
25
- context.clearRect(
26
- 0,
27
- 0,
28
- width * devicePixelRatio,
29
- height * devicePixelRatio
30
- );
31
-
32
- context.save();
33
- context.translate(centerX * devicePixelRatio, centerY * devicePixelRatio);
34
- context.beginPath();
35
-
36
- const _arc = arc()
37
- .innerRadius(innerRadius * _radius)
38
- .outerRadius(outerRadius * _radius)
39
- // .padAngle(axis.pole.padAngle)
40
- // .cornerRadius(axis.pole.cornerRadius)
41
- .context(context);
42
-
43
- arcs.forEach((element) => {
44
- const startAngle = element.arc.startAngle()();
45
- const endAngle = element.arc.endAngle()();
46
- _arc.startAngle(startAngle).endAngle(endAngle)();
47
- context.fillStyle = 'rgba(255, 255, 255, 0)';
48
- context.fill();
49
- });
50
-
51
- context.clip();
52
- context.rotate(-Math.PI / 2);
53
-
54
- const conic = new ConicalGradient();
55
- arcs.reduce(
56
- (
57
- reduced,
58
- {
59
- percent,
60
- series: {
61
- color: {
62
- type,
63
- pure,
64
- linear: { stops },
65
- },
66
- },
67
- }
68
- ) => {
69
- const result = reduced + percent / 100;
70
- const color = type == 'pure' ? pure : stops[0].color;
71
- if (!!color) {
72
- var { r, g, b, a } = converColor(color, 1);
73
- conic.addColorStop(reduced, { r, g, b, a: 0 });
74
- conic.addColorStop(result, { r, g, b, a });
75
- }
76
- return result;
77
- },
78
- 0
79
- );
80
-
81
- conic.fill(context, 0, 0, _radius, 0, 2 * Math.PI, false);
82
- context.restore();
83
- }
84
- }, [canvas, radius, arcs, innerRadius, outerRadius]);
85
-
86
- return (
87
- <canvas
88
- className={
89
- direction == 'clockwise'
90
- ? css.rotateClockwise
91
- : css.rotateCounterClockwise
92
- }
93
- ref={setCanvas}
94
- width={width * devicePixelRatio}
95
- height={height * devicePixelRatio}
96
- style={{
97
- opacity: opacity / 100,
98
- width,
99
- height,
100
- pointerEvents: 'none',
101
- position: 'absolute',
102
- animationTimingFunction: 'linear',
103
- animationDuration: speed + 's',
104
- animationIterationCount: 'infinite',
105
- transformOrigin: centerX + 'px ' + centerY + 'px',
106
- }}
107
- />
108
- );
109
- };
110
-
111
- /**
112
- * ConicalGradient
113
- */
114
- function ConicalGradient() {
115
- this._offsets = [];
116
- this._colors = [];
117
- }
118
-
119
- ConicalGradient.prototype = {
120
- /**
121
- * addColorStop
122
- *
123
- * @param {Number} offset
124
- * @param {Array} color RGBA值
125
- */
126
- addColorStop: function (offset, color) {
127
- this._offsets.push(offset);
128
- this._colors.push(color);
129
- return this;
130
- },
131
-
132
- /**
133
- * _offsetsReverse (array.forEach callback)
134
- */
135
- _offsetsReverse: function (offset, index, array) {
136
- array[index] = 1 - offset;
137
- },
138
- /**
139
- * fill
140
- *
141
- * @param {Number} context
142
- * @param {Number} x
143
- * @param {Number} y
144
- * @param {Number} radius
145
- * @param {Number} startAngle
146
- * @param {Number} endAngle
147
- * @param {Boolean} anticlockwise
148
- */
149
- fill: function (context, x, y, radius, startAngle, endAngle, anticlockwise) {
150
- var offsets = this._offsets;
151
- var colors = this._colors;
152
-
153
- var PI = Math.PI;
154
- var TWO_PI = PI * 2;
155
-
156
- if (startAngle < 0) startAngle = (startAngle % TWO_PI) + TWO_PI;
157
- startAngle %= TWO_PI;
158
- if (endAngle < 0) endAngle = (endAngle % TWO_PI) + TWO_PI;
159
- endAngle %= TWO_PI;
160
-
161
- if (anticlockwise) {
162
- // 逆时针
163
- var swap = startAngle;
164
- startAngle = endAngle;
165
- endAngle = swap;
166
-
167
- colors.reverse();
168
- offsets.reverse();
169
- offsets.forEach(this._offsetsReverse);
170
- }
171
-
172
- if (startAngle > endAngle || Math.abs(endAngle - startAngle) < 0.0001) {
173
- endAngle += TWO_PI;
174
- }
175
-
176
- var colorsLength = colors.length;
177
-
178
- var currentColorIndex = 0;
179
- var currentColor = colors[currentColorIndex];
180
- var nextColor = colors[currentColorIndex];
181
-
182
- var prevOffset = 0;
183
- var currentOffset = offsets[currentColorIndex];
184
- var offsetDist = currentOffset - prevOffset;
185
-
186
- var totalAngleDeg = ((endAngle - startAngle) * 180) / PI;
187
- var stepAngleRad = (endAngle - startAngle) / totalAngleDeg;
188
-
189
- var arcStartAngle = startAngle;
190
- var arcEndAngle;
191
-
192
- var r1 = currentColor.r,
193
- g1 = currentColor.g,
194
- b1 = currentColor.b,
195
- a1 = currentColor.a,
196
- r2 = nextColor.r,
197
- g2 = nextColor.g,
198
- b2 = nextColor.b,
199
- a2 = nextColor.a;
200
- if (!a1 && a1 !== 0) a1 = 1;
201
- if (!a2 && a2 !== 0) a2 = 1;
202
- var rd = r2 - r1,
203
- gd = g2 - g1,
204
- bd = b2 - b1,
205
- ad = a2 - a1;
206
- var t, r, g, b, a;
207
-
208
- context.save();
209
- for (var i = 0, n = 1 / totalAngleDeg; i < 1; i += n) {
210
- if (i >= currentOffset) {
211
- currentColorIndex++;
212
-
213
- currentColor = nextColor;
214
- r1 = currentColor.r;
215
- g1 = currentColor.g;
216
- b1 = currentColor.b;
217
- a1 = currentColor.a;
218
- if (!a1 && a1 !== 0) a1 = 1;
219
-
220
- nextColor = colors[currentColorIndex] || {r:0,g:0,b:0,a:1};
221
- r2 = nextColor.r;
222
- g2 = nextColor.g;
223
- b2 = nextColor.b;
224
- a2 = nextColor.a;
225
- if (!a2 && a2 !== 0) a2 = 1;
226
-
227
- rd = r2 - r1;
228
- gd = g2 - g1;
229
- bd = b2 - b1;
230
- ad = a2 - a1;
231
-
232
- prevOffset = currentOffset;
233
- currentOffset = offsets[currentColorIndex];
234
- offsetDist = currentOffset - prevOffset;
235
- }
236
-
237
- t = (i - prevOffset) / offsetDist;
238
- r = (rd * t + r1) & 255;
239
- g = (gd * t + g1) & 255;
240
- b = (bd * t + b1) & 255;
241
- a = ad * t + a1;
242
-
243
- arcEndAngle = arcStartAngle + stepAngleRad;
244
-
245
- context.fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')';
246
- context.beginPath();
247
- context.moveTo(x, y);
248
- context.arc(x, y, radius, arcStartAngle - 0.02, arcEndAngle, false);
249
- context.closePath();
250
- context.fill();
251
-
252
- arcStartAngle += stepAngleRad;
253
- }
254
- context.restore();
255
-
256
- return this;
257
- },
258
- };
1
+ /**
2
+ * 饼图装饰内圈
3
+ */
4
+ import React, { useEffect, useState } from 'react';
5
+ import { arc } from 'd3v7';
6
+ import { converColor } from '@easyv/utils/lib/common/utils';
7
+ import css from '../css/index.module.css';
8
+
9
+ export default ({
10
+ width,
11
+ height,
12
+ centerX,
13
+ centerY,
14
+ radius,
15
+ config: { show, innerRadius, outerRadius, opacity, speed, direction },
16
+ arcs,
17
+ }) => {
18
+ if (!show) return null;
19
+ const [canvas, setCanvas] = useState(null);
20
+
21
+ useEffect(() => {
22
+ if (arcs && arcs.length > 0 && canvas && canvas.getContext('2d')) {
23
+ const _radius = radius * devicePixelRatio;
24
+ const context = canvas.getContext('2d');
25
+ context.clearRect(
26
+ 0,
27
+ 0,
28
+ width * devicePixelRatio,
29
+ height * devicePixelRatio
30
+ );
31
+
32
+ context.save();
33
+ context.translate(centerX * devicePixelRatio, centerY * devicePixelRatio);
34
+ context.beginPath();
35
+
36
+ const _arc = arc()
37
+ .innerRadius(innerRadius * _radius)
38
+ .outerRadius(outerRadius * _radius)
39
+ // .padAngle(axis.pole.padAngle)
40
+ // .cornerRadius(axis.pole.cornerRadius)
41
+ .context(context);
42
+
43
+ arcs.forEach((element) => {
44
+ const startAngle = element.arc.startAngle()();
45
+ const endAngle = element.arc.endAngle()();
46
+ _arc.startAngle(startAngle).endAngle(endAngle)();
47
+ context.fillStyle = 'rgba(255, 255, 255, 0)';
48
+ context.fill();
49
+ });
50
+
51
+ context.clip();
52
+ context.rotate(-Math.PI / 2);
53
+
54
+ const conic = new ConicalGradient();
55
+ arcs.reduce(
56
+ (
57
+ reduced,
58
+ {
59
+ percent,
60
+ series: {
61
+ color: {
62
+ type,
63
+ pure,
64
+ linear: { stops },
65
+ },
66
+ },
67
+ }
68
+ ) => {
69
+ const result = reduced + percent / 100;
70
+ const color = type == 'pure' ? pure : stops[0].color;
71
+ if (!!color) {
72
+ var { r, g, b, a } = converColor(color, 1);
73
+ conic.addColorStop(reduced, { r, g, b, a: 0 });
74
+ conic.addColorStop(result, { r, g, b, a });
75
+ }
76
+ return result;
77
+ },
78
+ 0
79
+ );
80
+
81
+ conic.fill(context, 0, 0, _radius, 0, 2 * Math.PI, false);
82
+ context.restore();
83
+ }
84
+ }, [canvas, radius, arcs, innerRadius, outerRadius]);
85
+
86
+ return (
87
+ <canvas
88
+ className={
89
+ direction == 'clockwise'
90
+ ? css.rotateClockwise
91
+ : css.rotateCounterClockwise
92
+ }
93
+ ref={setCanvas}
94
+ width={width * devicePixelRatio}
95
+ height={height * devicePixelRatio}
96
+ style={{
97
+ opacity: opacity / 100,
98
+ width,
99
+ height,
100
+ pointerEvents: 'none',
101
+ position: 'absolute',
102
+ animationTimingFunction: 'linear',
103
+ animationDuration: speed + 's',
104
+ animationIterationCount: 'infinite',
105
+ transformOrigin: centerX + 'px ' + centerY + 'px',
106
+ }}
107
+ />
108
+ );
109
+ };
110
+
111
+ /**
112
+ * ConicalGradient
113
+ */
114
+ function ConicalGradient() {
115
+ this._offsets = [];
116
+ this._colors = [];
117
+ }
118
+
119
+ ConicalGradient.prototype = {
120
+ /**
121
+ * addColorStop
122
+ *
123
+ * @param {Number} offset
124
+ * @param {Array} color RGBA值
125
+ */
126
+ addColorStop: function (offset, color) {
127
+ this._offsets.push(offset);
128
+ this._colors.push(color);
129
+ return this;
130
+ },
131
+
132
+ /**
133
+ * _offsetsReverse (array.forEach callback)
134
+ */
135
+ _offsetsReverse: function (offset, index, array) {
136
+ array[index] = 1 - offset;
137
+ },
138
+ /**
139
+ * fill
140
+ *
141
+ * @param {Number} context
142
+ * @param {Number} x
143
+ * @param {Number} y
144
+ * @param {Number} radius
145
+ * @param {Number} startAngle
146
+ * @param {Number} endAngle
147
+ * @param {Boolean} anticlockwise
148
+ */
149
+ fill: function (context, x, y, radius, startAngle, endAngle, anticlockwise) {
150
+ var offsets = this._offsets;
151
+ var colors = this._colors;
152
+
153
+ var PI = Math.PI;
154
+ var TWO_PI = PI * 2;
155
+
156
+ if (startAngle < 0) startAngle = (startAngle % TWO_PI) + TWO_PI;
157
+ startAngle %= TWO_PI;
158
+ if (endAngle < 0) endAngle = (endAngle % TWO_PI) + TWO_PI;
159
+ endAngle %= TWO_PI;
160
+
161
+ if (anticlockwise) {
162
+ // 逆时针
163
+ var swap = startAngle;
164
+ startAngle = endAngle;
165
+ endAngle = swap;
166
+
167
+ colors.reverse();
168
+ offsets.reverse();
169
+ offsets.forEach(this._offsetsReverse);
170
+ }
171
+
172
+ if (startAngle > endAngle || Math.abs(endAngle - startAngle) < 0.0001) {
173
+ endAngle += TWO_PI;
174
+ }
175
+
176
+ var colorsLength = colors.length;
177
+
178
+ var currentColorIndex = 0;
179
+ var currentColor = colors[currentColorIndex];
180
+ var nextColor = colors[currentColorIndex];
181
+
182
+ var prevOffset = 0;
183
+ var currentOffset = offsets[currentColorIndex];
184
+ var offsetDist = currentOffset - prevOffset;
185
+
186
+ var totalAngleDeg = ((endAngle - startAngle) * 180) / PI;
187
+ var stepAngleRad = (endAngle - startAngle) / totalAngleDeg;
188
+
189
+ var arcStartAngle = startAngle;
190
+ var arcEndAngle;
191
+
192
+ var r1 = currentColor.r,
193
+ g1 = currentColor.g,
194
+ b1 = currentColor.b,
195
+ a1 = currentColor.a,
196
+ r2 = nextColor.r,
197
+ g2 = nextColor.g,
198
+ b2 = nextColor.b,
199
+ a2 = nextColor.a;
200
+ if (!a1 && a1 !== 0) a1 = 1;
201
+ if (!a2 && a2 !== 0) a2 = 1;
202
+ var rd = r2 - r1,
203
+ gd = g2 - g1,
204
+ bd = b2 - b1,
205
+ ad = a2 - a1;
206
+ var t, r, g, b, a;
207
+
208
+ context.save();
209
+ for (var i = 0, n = 1 / totalAngleDeg; i < 1; i += n) {
210
+ if (i >= currentOffset) {
211
+ currentColorIndex++;
212
+
213
+ currentColor = nextColor;
214
+ r1 = currentColor.r;
215
+ g1 = currentColor.g;
216
+ b1 = currentColor.b;
217
+ a1 = currentColor.a;
218
+ if (!a1 && a1 !== 0) a1 = 1;
219
+
220
+ nextColor = colors[currentColorIndex] || {r:0,g:0,b:0,a:1};
221
+ r2 = nextColor.r;
222
+ g2 = nextColor.g;
223
+ b2 = nextColor.b;
224
+ a2 = nextColor.a;
225
+ if (!a2 && a2 !== 0) a2 = 1;
226
+
227
+ rd = r2 - r1;
228
+ gd = g2 - g1;
229
+ bd = b2 - b1;
230
+ ad = a2 - a1;
231
+
232
+ prevOffset = currentOffset;
233
+ currentOffset = offsets[currentColorIndex];
234
+ offsetDist = currentOffset - prevOffset;
235
+ }
236
+
237
+ t = (i - prevOffset) / offsetDist;
238
+ r = (rd * t + r1) & 255;
239
+ g = (gd * t + g1) & 255;
240
+ b = (bd * t + b1) & 255;
241
+ a = ad * t + a1;
242
+
243
+ arcEndAngle = arcStartAngle + stepAngleRad;
244
+
245
+ context.fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')';
246
+ context.beginPath();
247
+ context.moveTo(x, y);
248
+ context.arc(x, y, radius, arcStartAngle - 0.02, arcEndAngle, false);
249
+ context.closePath();
250
+ context.fill();
251
+
252
+ arcStartAngle += stepAngleRad;
253
+ }
254
+ context.restore();
255
+
256
+ return this;
257
+ },
258
+ };