### example 19 Horizontal Lollipop
d1 <- dPlot(
x = "UnitSales",
y = "Month",
groups = "Channel",
data = data,
type = "bubble"
)
d1$xAxis( type = "addMeasureAxis" )
d1$yAxis( type = "addCategoryAxis", orderRule = "Date")
d1$legend(
x = 200,
y = 10,
width = 500,
height = 20,
horizontalAlign = "right"
)
d1