Source code for dantro.plot_creators.pcr_vega
"""This module implements the VegaPlotCreator class"""
import logging
from .pcr_base import BasePlotCreator
# Local constants
log = logging.getLogger(__name__)
# -----------------------------------------------------------------------------
[docs]class VegaPlotCreator(BasePlotCreator):
"""This PlotCreator interfaces with Altair to provide a Vega-Lite interface
for plot creation.
"""
pass