Pauan

Results 1228 comments of Pauan

Hi @ofirk12, Are you using a `` tag or Webpack? Try using `AmCharts.React` rather than `AmCharts`

@foodaka Yes it does. There are examples on [the main page](https://github.com/amcharts/amcharts3-react#usage).

@Gangesh2493 What problems are you having? The only difference for ES6 is that you have to use `import AmCharts from "@amcharts/amcharts3-react";` rather than `require`. Everything else is exactly the same....

@Gangesh2493 It's completely fine to use `` tags with Webpack. [And there are good reasons for why AmCharts v3 uses `` tags.](https://github.com/amcharts/amcharts3-react/issues/41#issuecomment-293155215) If you're still having problems, please give me...

@Gangesh2493 Thank you for providing your code. I will look at it within the next couple days.

@Gangesh2493 There was a bug with `@amcharts/amcharts3-react` version `2` which caused it to not display the chart in certain situations. I have fixed the bug. Please follow these steps: 1....

@shivangkumar Thanks for the report! Do you have a codepen (or a github repo) which reproduces this error? It would help a lot with fixing it.

Thanks for creating this issue! This is a deep and nuanced topic. In particular, Rust's general lack of global variables means that the typical Elm-style of architecture is more complicated....

Yeah, I saw that. I think it's a cool experiment, though I don't think it requires a new framework: it should be possible to do something similar with dominator.

Untested, but something like this should work: ```rust pub trait Component { type Message; fn update(&mut self, message: Self::Message); fn render(&self, messages: Messages) -> Dom; } pub struct Messages {...