toyplot icon indicating copy to clipboard operation
toyplot copied to clipboard

Interactive plotting for Python.

Results 16 toyplot issues
Sort by recently updated
recently updated
newest added

I updated the `.extents()` for Point Marks to return extents of its markers as `msize / 2 + stroke`, unless marker type is "rNxM", where it gets height and width...

It would be nice to do grouped color bar charts, showing multiple categories per tick mark. Here's a rather advanced example: http://bl.ocks.org/mbostock/3887051

Enhancement

``` data_table = toyplot.data.read_csv("/usr/share/gdal/stateplane.csv") data_table = data_table[:10] canvas = toyplot.Canvas() table = canvas.table(data_table) ``` gives me ![untitled](https://user-images.githubusercontent.com/7661092/28769056-4ee2a5b8-75da-11e7-99b9-f0e1120b8d13.png) You can see that there is no visible margin between the STATE and...

Enhancement

I would like to increase the font size for the axis tick marks. Maybe I'm not doing it right (but I also could not find any documentation for how it...

Documentation

Currently, every text element in a drawing duplicates its CSS state, now that we have taken over all text layout, but this is wasteful. We need to cut down on...

Enhancement

I made some circles: ``` import numpy import toyplot x = [1, 2] y = [1, 2] size = [10, 25] canvas = toyplot.Canvas() axes = canvas.cartesian() mark = axes.scatterplot(x,...

Bug

Please don't shoot me, but I'd just like to put in a request for pie or donut style charts. Yes I know data scientists abhor them. And I know they...

Enhancement

It will be nice to have more preview of what toyplot is capable in the documentation. Awesome project!

Documentation

This would facilitate several things: - Showing the domain without using the axis spine. - Showing separate domains when there are multiple series. - Showing arbitrary ranges of interest, such...

Enhancement

Currently, table axes map the entire table (with top / left / bottom / right) sections into the range specified by the canvas. It might be better if only the...

Bug