d3plus / d3plus-shape

Fancy SVG shapes for visualizations
MIT License
20 stars 2 forks source link

Box shape#65 #82

Closed rbaheti closed 6 years ago

rbaheti commented 6 years ago

Description

Adds new shapes Box and Whisker to d3plus-shape. closes #65

Types of changes

Checklist

davelandry commented 6 years ago

Additionally, the whiskerMode method on Box seems to be working incorrectly:

davelandry commented 6 years ago

And finally, I found the following CSS that draws a 10px grid in the background of the page to help test placement 😎

body {
  background-size: 10px 10px;
  background-image: linear-gradient(to right, #ddd 1px, transparent 1px), linear-gradient(to bottom, #ddd 1px, transparent 1px);
  margin: 0;
}