Lukas Kurucz

Results 10 comments of Lukas Kurucz

@terrysahaidak I tried to use the one from Microsoft (it's built on top of work from Google), but can't seem to proxy JSCore. Only works with Safari. Maybe need to...

Constraints can be used like this: ### template.hbs ```hbs {{#ember-tether target=targetElement targetAttachment="top right" attachment="top left" constraints=constraints }} Tether content {{/ember-tether}} ``` ### component.js ```js constraints: Ember.computed(function() { return [{ to:...

@DhavalKakadiya if I'm not mistaken, the line chart needs at least two consecutive points to draw the line. But for your solution, I would just map `null` to `0`, so...

@DhavalKakadiya I see. So you want something like this? ![image](https://user-images.githubusercontent.com/5339061/68280680-fd2c3b80-00b0-11ea-8018-a45ee1e66318.png)

@DhavalKakadiya alright, I think I got it: ![image](https://user-images.githubusercontent.com/5339061/68369723-f7e4f480-0175-11ea-86d9-fe46cff37680.png) To render `` like this, we need to remove `.defined((item) => typeof item.y === 'number')` from: https://github.com/JesperLekland/react-native-svg-charts/blob/dev/src/line-chart/line-chart.js#L12

@DhavalKakadiya I'm not sure actually what is your desired output. Can you draw how you want the chart to look like? Thanks

@DhavalKakadiya Alright, I think I got it here: > Basically it uses time series, so it doesn't really on number of data values, but rather on time scale. ```javascript const...

@DhavalKakadiya I'm not sure I understand. There is nothing be drawn if value for date is null, but with time series chart, it will keep the empty dates. So we...

@rmevans9 cool, yeah, let's see how the new architecture comes up even with new UI. I guess the UI can be dropped from my branch, so I can keep the...

Would it be easy to apply `LayoutManager` code from `MasonryList` in [FlashList](https://github.com/Shopify/flash-list)? @naqvitalha