-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
It's possible to get this to work in regular chartist. You add something like this:
.on('draw', function(data) {
if (data.type === 'label' && data.axis.units.pos === 'y') {
var group = new Chartist.Svg('g');
group.append(
new Chartist.Svg('image', {
'xlink:href': data.text.image,
y: data.y,
width: '23px',
height:data.height
})
);
data.element.replace(group);
}
});
But how to get this to work with vue-chartist?
Thank you.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels