Nick Kridler

Results 19 comments of Nick Kridler

Sorry for the late reply. I'll try to look into this soon and add it.

Thanks, I'll fix this in the next version.

Thanks! Sorry for the late reply. I plan on getting to it at some point in the near future, but I haven't had time just yet. I have a few...

Thanks for pointing this out. I'll take a look and try to fix it.

You have a couple of options. 1. You can make a link that points to wherever the pyxley/bin/pyxapp file is located. 2. You can make your own script that does...

I think the problem is that I'm casting a string to a Date. You should be able to format however you like, it just needs to be a string when...

Here's the javascript code that does the conversion. ``` javascript _update: function(params) { d3.json(this.props.options.url.concat("?",$.param(params)), function(error, data){ var options = this.props.options.params; if(data.date){ for(var i=0; i < data.result.length; i++){ data.result[i] = MG.convert.date(data.result[i],...

It's possible, it's actually something I've been trying to solve in a more elegant way. Right now I'm doing a stupid hack where I put the parameters in the hash...

I suspect the problem is that the chart objects only get built once, so when you include `MyDataWrapper` in the chart functions, your data is never actually updated. If you...

In your code it doesn't look like the application has any way to know that the data has changed. `get_layouts` gets called once once the application starts, so changing the...