plottable icon indicating copy to clipboard operation
plottable copied to clipboard

:bar_chart: A library of modular chart components built on D3

Results 103 plottable issues
Sort by recently updated
recently updated
newest added

NumericAxis calls `_hideOverflowingTickLabels` which hides all tick labels that are outside of the Axis bounding box. Then, we do exactly that logic again, on the end ticks, iff `showEndTickLabels()` is...

Type: Bug
P2
Domain: API Design

Example in symbolFactories.ts ```typescript export function circle(): SymbolFactory { return (symbolSize: number) => { return d3.symbol().type(d3.symbolCircle).size(Math.PI * Math.pow(symbolSize / 2, 2)); }; } ``` to ```typescript export const circle: SymbolFactory...

Type: Breaking Change

If you click on the resize handle of an area selection on a bar chart, it will select the bar without clearing the area. This is inconsistent since other selections...

Remove Bower support in Plottable 3.0.

P2

When drawLabel is enabled for a bar chart, the bar total for the tallest bar isn't rendered since it doesn't fit between the top of the bar and the top...

Type: Feature Request
P2

Repro: https://jsfiddle.net/hellochar/yjb6Ln3c/3/ 1) render a pie plot 2) modify the `startAngle` or `endAngle` expected: pie chart's center moves to update in response to the new start and endAngles actual: pie...

Type: Bug
P2
Difficulty: Easy

I would like to be able to determine which entities lie along a given x/y dimension. entities in as implemented for bar chart works very well for this case, however...

Type: Enhancement

In `Dispatcher` there is this field: ``` Typescript protected _eventToCallback: { [eventName: string]: (e: Event) => any; } = {}; ``` But also these: ``` Typescript protected _callbacks: Utils.CallbackSet[] =...

P1
Domain: API Design
Domain: Architecture

Feature request from Slate.

Type: Feature Request
Slate

like this: ![image](https://cloud.githubusercontent.com/assets/7527733/10172636/41273fe8-6695-11e5-8e6c-ccd49bb00eed.png)

Type: Feature Request
Slate
Status: Needs Triage