Source code for sankey_plot

from mdvtools.charts.base_plot import BasePlot


[docs] class SankeyPlot(BasePlot): def __init__(self, title, params, size, position, id=None): super().__init__(title, "sankey_chart", params, size, position, id)
[docs] def set_axis_properties(self, axis, properties): self.plot_data[axis] = properties