104 lines
2.5 KiB
Plaintext
Raw Normal View History

FEATURES
* square plot (tie x and y shapes) (lockAspectRatio)
* tick values
* ticks selectable inside/outside
* better tick value formatting and selection algorithm
-> add (tickpos),(labelpos,labelvalue)
* logarithmic minor tick positions
* columns
* adjustable elements ((x,y) adjustments/offsets)
* settable plot sizes (so we can have same plot areas with only bottom one with x axis)
* Simple interface: nice bars, histograms (see next line)
* 3d plots
* recycle Cairo context between invocations of renderFigure
2012-11-20 07:13:37 +13:00
* ticks separate x axis groups for bar plots (rather than centre)
BUGS
2012-11-23 17:16:29 +13:00
* Log range crashing
* no ticks for greyscale?
* scale (log/linear) attached to range?
* logarithmic tick label width adjustment?
* should scale be in setRange*?
* draw axes and ticks separately so we get nice joins (refactor)
actually draw tick labels separately, but not an issue any more
* tick lengths too small for large axis line width?
* export Data.Colour.Names
2012-06-27 16:24:06 +12:00
* use error series for min/max for ranges
REFACTOR
* using padding functions not raw data structure: pdFoo, pdBar
* directly to impulse, step, area, not via line (performance)
* refactor Legend (LegendLocation)
* replace with utility functions common code in Render/Data.hs
* check Render/Data.hs, Render/Axis.hs
* rationalise passing of xscale/yscale
2012-07-25 16:38:54 +12:00
* re-refactor renderSeries for slight optimisation
2012-11-23 17:16:29 +13:00
* re-factor Axis.hs tickPositions and renderAxisTicks
COMPLETE
| * area
| * impulses
| * steps
| * matrix (greyscale)
| * legend
| * pad side opposite of axis label only if there is no label on that side
| * simple interface
| * option to use upper ranges
| * fix linewidths (as per cairo FAQ) by adding 0.5 to rectangle start / line (borders/axes)
| * expand Simple interface: xlabel, ylabel, etc...
| * bars
| * histogram (variable width bars)
| * Graphics.Plot replacement
| * log/semilog plots
| * candlestick
| * axis and tick joins are ugly
| * annotations
| * move monotone increasing check to creation of dataseries
| * formattable grid lines
| * cairo in device coordinates not user to avoid tiny linewidths
2012-06-27 16:24:06 +12:00
| * getOrdData only returns lower series in MinMax series
2012-06-29 14:39:32 +12:00
| * Candle and Whisker plots use bad sizes (remove xscale/yscale)
2012-07-25 16:38:54 +12:00
| * fix error bars for non-points (esp. bars, hist)
| * 0 in log plots should be ignored
| * candle and whisker use bad width for candle part
2012-11-20 07:13:37 +13:00
| * text labels for major ticks
2012-11-23 17:16:29 +13:00
| * fixed rendering TickValues
2012-12-07 19:20:33 +13:00
| * log tick label values
2013-06-28 19:42:11 +12:00
| * bars/columns adjust for multiple data series (data creation)
2012-12-07 19:20:33 +13:00
2012-07-25 16:38:54 +12:00
2012-06-29 14:39:32 +12:00
2012-06-27 16:24:06 +12:00