go-chart/drawing
Will Charczuk b713ff85cc Adds the ability to draw an XY scatter plot. (#27)
* works more or less

* updating comment

* removing debugging printf

* adding output

* tweaks

* missed a couple series validations

* testing auto coloring

* updated output.png

* color tests etc.

* sanity check tests.

* should not use unkeyed fields anyway.
2017-03-05 16:54:40 -08:00
..
color_test.go Adds the ability to draw an XY scatter plot. (#27) 2017-03-05 16:54:40 -08:00
color.go Adds the ability to draw an XY scatter plot. (#27) 2017-03-05 16:54:40 -08:00
constants.go need to be very specific about points vs. pixels. 2016-07-09 09:04:30 -07:00
curve_test.go Adds the ability to draw an XY scatter plot. (#27) 2017-03-05 16:54:40 -08:00
curve.go Adds the ability to draw an XY scatter plot. (#27) 2017-03-05 16:54:40 -08:00
dasher.go removing 3rd party deps. 2016-07-08 17:57:14 -07:00
demux_flattener.go removing 3rd party deps. 2016-07-08 17:57:14 -07:00
drawing.go removing 3rd party deps. 2016-07-08 17:57:14 -07:00
flattener.go Adds the ability to draw an XY scatter plot. (#27) 2017-03-05 16:54:40 -08:00
free_type_path.go removing 3rd party deps. 2016-07-08 17:57:14 -07:00
graphic_context.go removing 3rd party deps. 2016-07-08 17:57:14 -07:00
image_filter.go removing 3rd party deps. 2016-07-08 17:57:14 -07:00
line.go removing 3rd party deps. 2016-07-08 17:57:14 -07:00
matrix.go can rotate text + add y axis names 2016-08-06 21:59:46 -07:00
painter.go removing 3rd party deps. 2016-07-08 17:57:14 -07:00
path.go pie charts! 2016-07-28 02:34:44 -07:00
raster_graphic_context.go worked without scaling!! 2016-07-10 23:55:57 -07:00
README.md readme. 2016-07-09 09:15:18 -07:00
stack_graphic_context.go pie charts! 2016-07-28 02:34:44 -07:00
stroker.go removing 3rd party deps. 2016-07-08 17:57:14 -07:00
text.go can rotate text + add y axis names 2016-08-06 21:59:46 -07:00
transformer.go removing 3rd party deps. 2016-07-08 17:57:14 -07:00
util.go need to be very specific about points vs. pixels. 2016-07-09 09:04:30 -07:00

go-chart > drawing

The bulk of the code in this package is based on draw2d, but with significant modifications to make the APIs more golang friendly and careful about units (points vs. pixels).