Is there any sensible way to create sth like extension Image: Plottable
and pass to .value inside BarMark. Or there is any other possibility to have images below charts instead text?
I try sth like but it of course doesn't work
extension Image: Plottable {
public var primitivePlottable: String {
????
}
public init?(primitivePlottable: String) {
self.init(primitivePlottable)
}
}