store = Observable(new Memory({data: data}));
chart.addSeries("Load Cell 0", new StoreSeries(store, { query: { load_cell_id:0 }}, "kn"));
How would I go about doing a more advanced query with the Store Series?
For the above i need all 'load_cell_id = 0' and 'date_time < 12345' or other time stamp.
At the moment i can only get load_cell_id:0 to work.