# myt-pie-chart
Simple pie chart library with D3

# Tooltip.Dimension Properties

## Width

  _`pie.tooltip.dimension.setWidth(int)` - Optional, defaults to 150._

```JavaScript
pie.tooltip.dimension.setWidth(int); // Sets the width of the tooltip.
pie.tooltip.dimension.getWidth();       // Returns the width of the tooltip.
```
## Height

  _`pie.tooltip.dimension.setHeight(int)` - Optional, defaults to 35._

```JavaScript
pie.tooltip.dimension.setHeight(int); // Sets the height of the tooltip.
pie.tooltip.dimension.getHeight();       // Returns the height of the tooltip.
```

## get Dimension

```JavaScript
pie.chart.dimension.getDimension() // Returns the properties of the tooltip.dimension object

// #=> {
//   width: ..,
//   height: ..
// };
```
