# Packages
No description provided by the author
# README
D3 Bullet Chart
This Go library is based on work by Mike Bostock and inspired by work by Stephen Few.
Here is a screenshot from the green red example:
Usage
See the examples.
Here is a quick synopsis:
timeNow := time.Now().UTC()
bulletBuilderYTD := d3bullet.D3BulletChartBuilder{
Title: "Progress YTD",
YTarget: int64(50),
YCurrent: int64(200),
XStart: tu.YearStart(timeNow).Unix(),
XCurrent: timeNow.Unix(),
XEnd: tu.YearEnd(timeNow).Unix(),
}