chaco
chaco copied to clipboard
Chaco is a Python package for building interactive and custom 2-D plots.
The code in [`chaco/contour/cntr.c`](https://github.com/enthought/chaco/blob/master/chaco/contour/cntr.c) is outdated and a little buggy (as I discovered when I tried to pass the optional mask to the `Cntr` type). It appears to be a...
This PR does the following: - Use the `sphinx_copybutton` extension when building the Sphinx documentation - Make `sphinx-copybutton` a `docs` extra for the `chaco` package - Add a `pypi_dependencies` section...
Hello, I have this problem (the code had worked before, but now it does not work anymore): **Problem Description** When I execute the below python code example from your documentation...
The use of the `Trait()` factory function and related `TraitHandler`-based constructs is discouraged: most or all of its uses can be done by more modern `TraitTypes` such as `Map` and...
The following error occurred when running the [scatter inspector demo](https://github.com/enthought/chaco/blob/cbf53e733e5cbfae6338b46faf29032cf73bf899/chaco/examples/demo/basic/scatter_inspector.py) with chaco (v5.0.0) and enable (v5.3.0): ``` Traceback (most recent call last): File "scatter_inspector_overlay.py", line 91, in demo.configure_traits() File "/Users/acheng/.edm/envs/test-enable/lib/python3.6/site-packages/traits/has_traits.py",...
Hello, Is it possible to set a title to the colorbar? I don't see any example showing this in chaco's demo dir. I was thinking Colorbar had a 'title' trait,...
Hello, I would like to change TextPlot color & font. Initialization is ok, but when the color trait is changed for instance, the color is not changed in the display....
In `DataRange1D`, we're getting a NumPy `FutureWarning` when setting `high_setting` or `low_setting` with a shape (1,) NumPy array. That `FutureWarning` is coming from code like this: https://github.com/enthought/chaco/blob/e0e4f7d8bc5551191ad65295fe97f55190e87a9c/chaco/data_range_1d.py#L285 which compares the...
[The `ContextMenuTool` tool](https://github.com/enthought/enable/blob/master/enable/tools/pyface/context_menu_tool.py) is useful but it's not obvious that you need to look in `enable` for it. It should be made available from `chaco.tools.api`
The [docstring description of the `type` parameter](https://github.com/enthought/chaco/blob/192675d6cb579df56458b87988026d895e7a7a84/chaco/plot.py#L282) for `Plot.plot` reads: > type : comma-delimited string of plot type However, I do not see where a comma delimited list of plot...