徽章水印
import { Chart } from '@antv/g2';
const chart = new Chart({
container: 'container',
autoFit: true,
});
chart.options({
type: 'view',
children: [
{
type: 'interval',
data: [
{ month: 'Jan.', profit: 387264, start: 0, end: 387264 },
{ month: 'Feb.', profit: 772096, start: 387264, end: 1159360 },
{ month: 'Mar.', profit: 638075, start: 1159360, end: 1797435 },
{ month: 'Apr.', profit: -211386, start: 1797435, end: 1586049 },
{ month: 'May', profit: -138135, start: 1586049, end: 1447914 },
{ month: 'Jun', profit: -267238, start: 1447914, end: 1180676 },
{ month: 'Jul.', profit: 431406, start: 1180676, end: 1612082 },
{ month: 'Aug.', profit: 363018, start: 1612082, end: 1975100 },
{ month: 'Sep.', profit: -224638, start: 1975100, end: 1750462 },
{ month: 'Oct.', profit: -299867, start: 1750462, end: 1450595 },
{ month: 'Nov.', profit: 607365, start: 1450595, end: 2057960 },
{ month: 'Dec.', profit: 1106986, start: 2057960, end: 3164946 },
{ month: 'Total', start: 0, end: 3164946 },
],
encode: {
x: 'month',
y: ['end', 'start'],
color: (d) =>
d.month === 'Total'
? 'Total'
: d.profit > 0
? 'Increase'
: 'Decrease',
},
axis: { y: { labelFormatter: '~s' } },
tooltip: {
items: [
{ channel: 'y', valueFormatter: '~s' },
{ channel: 'y1', valueFormatter: '~s' },
],
},
},
{ type: 'shape', style: { x: '80%', y: '70%', render: watermark } },
],
});
chart.render();
function watermark({ x, y }, context) {
const { document } = context;
const g = document.createElement('g', {});
const c1 = document.createElement('circle', {
style: {
cx: x,
cy: y,
lineWidth: 4,
r: 65,
stroke: 'red',
opacity: 0.3,
},
});
const c2 = document.createElement('circle', {
style: {
cx: x,
cy: y,
lineWidth: 2,
r: 50,
stroke: 'red',
opacity: 0.3,
},
});
const text = document.createElement('text', {
style: {
x,
y,
text: '数据保密',
transformOrigin: 'center',
transform: 'rotate(30)',
fontSize: 20,
fill: 'red',
textAlign: 'center',
textBaseline: 'middle',
fillOpacity: 0.3,
},
});
g.appendChild(c1);
g.appendChild(c2);
g.appendChild(text);
return g;
}