|
@@ -44,14 +44,6 @@ export class SColumnItem extends SGraphPolyGroupItem {
|
|
|
* @param data 柱子数据
|
|
|
*/
|
|
|
constructor(parent: SGraphItem | null, data: Column) {
|
|
|
- const style = {
|
|
|
- default: {
|
|
|
- stroke: "#000000",
|
|
|
- fill: "#000000",
|
|
|
- lineWidth: 0,
|
|
|
- effect: {}
|
|
|
- }
|
|
|
- };
|
|
|
let tempArr = data.OutLine;
|
|
|
let outline: Point[][] = [];
|
|
|
if (tempArr && tempArr.length) {
|
|
@@ -60,7 +52,7 @@ export class SColumnItem extends SGraphPolyGroupItem {
|
|
|
});
|
|
|
}
|
|
|
|
|
|
- super(parent, { outline: outline, style: style });
|
|
|
+ super(parent, { outline: outline });
|
|
|
this.data = data;
|
|
|
this.zOrder = ItemOrder.columnOrder;
|
|
|
}
|