1. #example50 interpolation options from dimple v2.0.0
  2. #see interpolate optionsfrom d3 docs
  3. #https://github.com/mbostock/d3/wiki/SVG-Shapes
  4. #//dimplejs.org/examples_viewer.html?id=steps_horizontal_stacked
  5. #var myChart = new dimple.chart(svg, data);
  6. d1 <- dPlot(
  7. data = subset(data, Owner %in% c("Aperture","Black Mesa")),
  8. bounds = list(x=60,y=30,width=505,height=305),
  9. #myChart.setBounds(60, 30, 505, 305);
  10. x = "Month",
  11. #var x = myChart.addCategoryAxis("x", "Month");
  12. xAxis = list(orderRule = "Date"),
  13. #x.addOrderRule("Date");
  14. y = "UnitSales",
  15. #myChart.addMeasureAxis("y", "Unit Sales");
  16. type = "line", groups = "Channel",
  17. #var s = myChart.addSeries("Channel", dimple.plot.line);,
  18. interpolation = "step",
  19. #s.interpolation = "step";
  20. legend = list(
  21. x = 60,
  22. y = 10,
  23. width = 500,
  24. height = 20,
  25. horizontalAlign = "right"
  26. )
  27. #myChart.addLegend(60, 10, 500, 20, "right");
  28. )
  29. d1
  30. #myChart.draw();