We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e35212 commit c1f7243Copy full SHA for c1f7243
src/plugins/plan/components/ActivityTimeline.vue
@@ -164,20 +164,6 @@ export default {
164
return {
165
margin: `0 ${this.alignmentData.rightWidth + rightOffset}px 0 ${this.alignmentData.leftWidth + leftOffset}px`
166
};
167
- },
168
- svgWidth() {
169
- // Reduce the width by left axis width, then take off the right yaxis width as well
170
- return '100%'; // TEMP!
171
- /*
172
- let leftOffset = 0;
173
- if (this.alignmentData.leftWidth) {
174
- leftOffset = this.alignmentData.multiple ? 2 * AXES_PADDING : AXES_PADDING;
175
- }
176
- const rightOffset = this.alignmentData.rightWidth ? AXES_PADDING : 0;
177
- return (
178
- this.width -
179
- (this.alignmentData.leftWidth + leftOffset + this.alignmentData.rightWidth + rightOffset)
180
- );*/
181
}
182
},
183
methods: {
0 commit comments