idraw/examples/renderer/lib/data/circle.js

76 lines
1.3 KiB
JavaScript
Raw Permalink Normal View History

const data = {
// bgColor: '#ffffff',
elements: [
{
2021-07-26 06:45:24 +00:00
name: "circle-001",
x: 10,
y: 10,
2021-07-26 06:45:24 +00:00
w: 100,
h: 100,
2021-07-09 10:19:10 +00:00
type: "circle",
desc: {
bgColor: "#f0f0f0",
2021-07-26 06:45:24 +00:00
borderWidth: 2,
2021-10-10 16:15:29 +00:00
borderColor: '#999999',
shadowColor: '#03a9f4',
// shadowColor: '#000000',
shadowOffsetX: 2,
shadowOffsetY: 2,
shadowBlur: 2,
2021-07-09 10:19:10 +00:00
},
},
{
2021-07-26 06:45:24 +00:00
name: "circle-002",
x: 100,
y: 80,
w: 200,
2021-07-26 06:45:24 +00:00
h: 100,
angle: 30,
type: "circle",
desc: {
bgColor: "#f0f0f0",
2021-07-26 06:45:24 +00:00
borderWidth: 2,
2021-10-10 16:15:29 +00:00
borderColor: '#666666',
2021-07-09 10:19:10 +00:00
},
},
{
2021-07-26 06:45:24 +00:00
name: "circle-003",
x: 200,
y: 200,
w: 200,
2021-07-26 06:45:24 +00:00
h: 100,
type: "circle",
angle: 0,
desc: {
bgColor: "#f0f0f0",
2021-07-26 06:45:24 +00:00
borderWidth: 2,
borderColor: '#666666'
2021-07-09 10:19:10 +00:00
},
},
{
2021-07-26 06:45:24 +00:00
name: "circle-004",
x: 220,
y: 80,
w: 300,
h: 300,
type: "circle",
desc: {
2021-10-10 16:15:29 +00:00
// bgColor: "#f0f0f0",
bgColor: "#000000",
2021-07-26 06:45:24 +00:00
borderWidth: 10,
2021-10-10 16:15:29 +00:00
borderColor: '#666666',
shadowColor: '#03a9f4',
// shadowColor: '#000000',
shadowOffsetX: 2,
shadowOffsetY: 2,
shadowBlur: 2,
2021-07-09 10:19:10 +00:00
},
},
],
};
2021-07-09 10:19:10 +00:00
export default data;