mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 07:12:41 +01:00
45b3c23148
Summary: Depends on D20439. Ref T13279. Some day, charts will probably need to reload themselves or do a bunch of defer/request-shaping magic when they're on a dashboard with 900 other charts. Give the controller separate "HTML placeholder" and "actual data" modes, and make the placeholder fetch the data in a separate request. Then, make the chart redraw if you resize the window instead of staying at whatever size it started as. Test Plan: - Loaded a chart, saw it load data asynchronously. - Resized the window, saw the chart resize. Reviewers: amckinley Reviewed By: amckinley Subscribers: yelirekim Maniphest Tasks: T13279 Differential Revision: https://secure.phabricator.com/D20440
19 lines
380 B
JavaScript
19 lines
380 B
JavaScript
/**
|
|
* @provides javelin-behavior-line-chart
|
|
* @requires javelin-behavior
|
|
* javelin-dom
|
|
* javelin-chart
|
|
*/
|
|
|
|
JX.behavior('line-chart', function(config) {
|
|
var chart_node = JX.$(config.chartNodeID);
|
|
|
|
var chart = new JX.Chart(chart_node);
|
|
|
|
function onresponse(r) {
|
|
chart.setData(r);
|
|
}
|
|
|
|
new JX.Request(config.dataURI, onresponse)
|
|
.send();
|
|
});
|