Wylie Conlon
Wylie Conlon
Yes, I replicate it every time running ruby 1.8.7 (default with my computer). Using ruby 1.9.3 seems to fix the problem. Seeing that, I'm not sure that this is a...
Edit: This comment is no longer accurate, it did not solve the root issue. This plugin seems to work fine with Cypress 10 after I replaced `return true` or `return...
I have found some problems/issues as well: * Missing legend and tooltip https://github.com/elastic/elastic-charts/issues/518 * All of the configuration callback functions need specific type arguments, not `Datum`. For example, `fillColor` is...
A new piece of feedback from https://github.com/elastic/kibana/pull/55477: > Not reporting the percentages and only showing the values is a concern. A pie chart is about percentages. In addition, it is...
The formatting is a bit off, but I don't see that there is a bug here. When I write the following code: ``` Text A Item 1 Text B ```...
Is it worth validating other cases of invalid parent-child relationships in HTML, such as not putting block tags inside inline tags? (like `` inside ``)? If this is a bug,...
Seconding this, it's functionality that breaks the user's mental model of a text field and should be a bug. The current strategy to parse input seems to be to broken...
I am also looking for this feature, and what I'm wondering is whether I can register a [custom render type](https://vega.github.io/vega/docs/api/view/#view_renderer) that would be able to extract the legend items into...
Following up on my previous comment, I have experimented with a custom renderer that extends the CanvasRenderer type. It looks like this is a very promising approach. The basic technique...
Long legends are something that I can't avoid in my use case, because the data is user-defined. Assuming that the custom renderer above is able to work as a mixed...