Commit 7ddf687f authored by Mike Greiling's avatar Mike Greiling

add ability to override graph size measurements

parent 187f69a0
......@@ -26,6 +26,11 @@
required: false,
default: true,
},
forceSmallGraph: {
type: Boolean,
required: false,
default: false,
},
documentationPath: {
type: String,
required: true,
......@@ -165,6 +170,7 @@
:project-path="projectPath"
:tags-path="tagsPath"
:show-legend="showLegend"
:small-graph="forceSmallGraph"
/>
</graph-group>
</div>
......
......@@ -57,6 +57,11 @@
required: false,
default: true,
},
smallGraph: {
type: Boolean,
required: false,
default: false,
},
},
data() {
......@@ -135,7 +140,7 @@
const breakpointSize = bp.getBreakpointSize();
const query = this.graphData.queries[0];
this.margin = measurements.large.margin;
if (breakpointSize === 'xs' || breakpointSize === 'sm') {
if (this.smallGraph || breakpointSize === 'xs' || breakpointSize === 'sm') {
this.graphHeight = 300;
this.margin = measurements.small.margin;
this.measurements = measurements.small;
......
......@@ -10,7 +10,7 @@ export default () => {
el,
render(createElement) {
return createElement(Dashboard, {
props: { ...el.dataset, showLegend: false },
props: { ...el.dataset, showLegend: false, forceSmallGraph: true },
});
},
});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment