我正在尝试使用chartist为条形图创建图例,我使用了图表插件来表示图例,但我无法将其与图表的底部对齐,任何人都可以提供有关如何自定义的输入。 (我已尝试在css中使用它,但无法反映我的更改。)
HTML:
<chartist class="ct-chart ct-major-twelfth"
chartist-chart-type="Bar"
chartist-data="chartData"
chartist-chart-options="chartOptions">
</chartist>
JS:
chartData = {
labels: [],
series: [[]]
};
chartOptions= {
plugins: [
Chartist.plugins.legend()
]
};
legend.JS:
$ct-series-colors: (#d70206, #F05B4F, #F4C63D, #453D3F) !default;
.ct-legend {
position: relative;
z-index: 10;
li {
position: relative;
padding-left: 23px;
margin-bottom: 3px;
}
li:before {
width: 12px;
height: 12px;
position: absolute;
left: 0;
content: '';
border: 3px solid transparent;
border-radius: 2px;
}
li.inactive:before {
background: transparent;
}
&.ct-legend-inside {
position: absolute;
top: 0;
right: 0;
}
@for $i from 0 to length($ct-series-colors) {
.ct-series-#{$i}:before {
background-color: nth($ct-series-colors, $i + 1);
border-color: nth($ct-series-colors, $i + 1);
}
}
}
也有人可以让我知道如何在bars.i上添加y轴值尝试使用下面的css文件,但仍然无法获得标签(类似于Chartist.plugins.ctPointLabels)但似乎它只适用于行图表。
CSS:
.ct-chart .ct-bar {
stroke-width: 60px;
}
.ct-chart .ct-label, .ct-chart .ct-label.ct-horizontal {
text-align: center;
}
.ct-bar-label {
text-anchor: middle;
alignment-baseline: hanging;
fill: white;
}
提前致谢。
答案 0 :(得分:4)
这很简单,但记录不清。
Chartist.plugins.legend({
position: 'bottom'
});
请记住,您的图表SVG绝对定位于其父级。所以你的传奇CSS也需要设置绝对位置。
要获得更全面的方法,请替换chart.on('created', ...)
chart.on('created', function (data) {
// Append the legend element to the DOM
switch (options.position) {
case 'top':
chart.container.insertBefore(legendElement, chart.container.childNodes[0]);
break;
case 'bottom':
chart.container.parentNode.insertBefore(legendElement, null);
break;
}
});
关键是:
chart.container.parentNode.insertBefore(legendElement, null);
将在图表所包含的元素之后插入图例。
快乐的编码。