1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
// bulletgraph - bullet graphs
// Bullet Graph Design Specification, Steven Few
// http://www.perceptualedge.com/articles/misc/Bullet_Graph_Design_Spec.pdf
package main
import (
"encoding/xml"
"flag"
"fmt"
"io"
"os"
"strconv"
"strings"
"github.com/ajstarks/svgo"
)
var (
width, height, iscale, fontsize, barheight, gutter int
bgcolor, barcolor, datacolor, compcolor, title string
showtitle, circlemark bool
gstyle = "font-family:Calibri;font-size:%dpx"
)
// a Bulletgraph Defintion
// <bulletgraph title="Bullet Graph" top="50" left="250" right="50">
// <note>This is a note</note>
// <note>More expository text</note>
// <bdata title="Revenue 2005" subtitle="USD (1,000)" scale="0,300,50" qmeasure="150,225" cmeasure="250" measure="275"/>
// <bdata title="Profit" subtitle="%" scale="0,30,5" qmeasure="20,25" cmeasure="27" measure="22.5"/>
// <bdata title="Avg Order Size subtitle="USD" scale="0,600,100" qmeasure="350,500" cmeasure="550" measure="320"/>
// <bdata title="New Customers" subtitle="Count" scale="0,2500,500" qmeasure="1700,2000" cmeasure="2100" measure="1750"/>
// <bdata title="Cust Satisfaction" subtitle="Top rating of 5" scale="0,5,1" qmeasure="3.5,4.5" cmeasure="4.7" measure="4.85"/>
// </bulletgraph>
type Bulletgraph struct {
Top int `xml:"top,attr"`
Left int `xml:"left,attr"`
Right int `xml:"right,attr"`
Title string `xml:"title,attr"`
Bdata []bdata `xml:"bdata"`
Note []note `xml:"note"`
}
type bdata struct {
Title string `xml:"title,attr"`
Subtitle string `xml:"subtitle,attr"`
Scale string `xml:"scale,attr"`
Qmeasure string `xml:"qmeasure,attr"`
Cmeasure float64 `xml:"cmeasure,attr"`
Measure float64 `xml:"measure,attr"`
}
type note struct {
Text string `xml:",chardata"`
}
// dobg does file i/o
func dobg(location string, s *svg.SVG) {
var f *os.File
var err error
if len(location) > 0 {
f, err = os.Open(location)
} else {
f = os.Stdin
}
if err == nil {
readbg(f, s)
f.Close()
} else {
fmt.Fprintf(os.Stderr, "%v\n", err)
}
}
// readbg reads and parses the XML specification
func readbg(r io.Reader, s *svg.SVG) {
var bg Bulletgraph
if err := xml.NewDecoder(r).Decode(&bg); err == nil {
drawbg(bg, s)
} else {
fmt.Fprintf(os.Stderr, "%v\n", err)
}
}
// drawbg draws the bullet graph
func drawbg(bg Bulletgraph, canvas *svg.SVG) {
qmheight := barheight / 3
if bg.Left == 0 {
bg.Left = 250
}
if bg.Right == 0 {
bg.Right = 50
}
if bg.Top == 0 {
bg.Top = 50
}
if len(title) > 0 {
bg.Title = title
}
maxwidth := width - (bg.Left + bg.Right)
x := bg.Left
y := bg.Top
scalesep := 4
tx := x - fontsize
canvas.Title(bg.Title)
// for each bdata element...
for _, v := range bg.Bdata {
// extract the data from the XML attributes
sc := strings.Split(v.Scale, ",")
qm := strings.Split(v.Qmeasure, ",")
// you must have min,max,increment for the scale, at least one qualitative measure
if len(sc) != 3 || len(qm) < 1 {
continue
}
// get the qualitative measures
qmeasures := make([]float64, len(qm))
for i, q := range qm {
qmeasures[i], _ = strconv.ParseFloat(q, 64)
}
scalemin, _ := strconv.ParseFloat(sc[0], 64)
scalemax, _ := strconv.ParseFloat(sc[1], 64)
scaleincr, _ := strconv.ParseFloat(sc[2], 64)
// label the graph
canvas.Text(tx, y+barheight/3, fmt.Sprintf("%s (%g)", v.Title, v.Measure), "text-anchor:end;font-weight:bold")
canvas.Text(tx, y+(barheight/3)+fontsize, v.Subtitle, "text-anchor:end;font-size:75%")
// draw the scale
scfmt := "%g"
if fraction(scaleincr) > 0 {
scfmt = "%.1f"
}
canvas.Gstyle("text-anchor:middle;font-size:75%")
for sc := scalemin; sc <= scalemax; sc += scaleincr {
scx := vmap(sc, scalemin, scalemax, 0, float64(maxwidth))
canvas.Text(x+int(scx), y+scalesep+barheight+fontsize/2, fmt.Sprintf(scfmt, sc))
}
canvas.Gend()
// draw the qualitative measures
canvas.Gstyle("fill-opacity:0.5;fill:" + barcolor)
canvas.Rect(x, y, maxwidth, barheight)
for _, q := range qmeasures {
qbarlength := vmap(q, scalemin, scalemax, 0, float64(maxwidth))
canvas.Rect(x, y, int(qbarlength), barheight)
}
canvas.Gend()
// draw the measure and the comparative measure
barlength := int(vmap(v.Measure, scalemin, scalemax, 0, float64(maxwidth)))
canvas.Rect(x, y+qmheight, barlength, qmheight, "fill:"+datacolor)
cmx := int(vmap(v.Cmeasure, scalemin, scalemax, 0, float64(maxwidth)))
if circlemark {
canvas.Circle(x+cmx, y+barheight/2, barheight/6, "fill-opacity:0.3;fill:"+compcolor)
} else {
cbh := barheight / 4
canvas.Line(x+cmx, y+cbh, x+cmx, y+barheight-cbh, "stroke-width:3;stroke:"+compcolor)
}
y += barheight + gutter // adjust vertical position for the next iteration
}
// if requested, place the title below the last bar
if showtitle && len(bg.Title) > 0 {
y += fontsize * 2
canvas.Text(bg.Left, y, bg.Title, "text-anchor:start;font-size:200%")
}
if len(bg.Note) > 0 {
canvas.Gstyle("font-size:100%;text-anchor:start")
y += fontsize * 2
leading := 3
for _, note := range bg.Note {
canvas.Text(bg.Left, y, note.Text)
y += fontsize + leading
}
canvas.Gend()
}
}
//vmap maps one interval to another
func vmap(value float64, low1 float64, high1 float64, low2 float64, high2 float64) float64 {
return low2 + (high2-low2)*(value-low1)/(high1-low1)
}
// fraction returns the fractions portion of a floating point number
func fraction(n float64) float64 {
i := int(n)
return n - float64(i)
}
// init sets up the command flags
func init() {
flag.StringVar(&bgcolor, "bg", "white", "background color")
flag.StringVar(&barcolor, "bc", "rgb(200,200,200)", "bar color")
flag.StringVar(&datacolor, "dc", "darkgray", "data color")
flag.StringVar(&compcolor, "cc", "black", "comparative color")
flag.IntVar(&width, "w", 1024, "width")
flag.IntVar(&height, "h", 800, "height")
flag.IntVar(&barheight, "bh", 48, "bar height")
flag.IntVar(&gutter, "g", 30, "gutter")
flag.IntVar(&fontsize, "f", 18, "fontsize (px)")
flag.BoolVar(&circlemark, "circle", false, "circle mark")
flag.BoolVar(&showtitle, "showtitle", false, "show title")
flag.StringVar(&title, "t", "", "title")
flag.Parse()
}
// for every input file (or stdin), draw a bullet graph
// as specified by command flags
func main() {
canvas := svg.New(os.Stdout)
canvas.Start(width, height)
canvas.Rect(0, 0, width, height, "fill:"+bgcolor)
canvas.Gstyle(fmt.Sprintf(gstyle, fontsize))
if len(flag.Args()) == 0 {
dobg("", canvas)
} else {
for _, f := range flag.Args() {
dobg(f, canvas)
}
}
canvas.Gend()
canvas.End()
}
|