mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Increased resolution for graphite datapoints (maxDataPoints), now equal to panel pixel width. (Closes #5)
This commit is contained in:
parent
125db1777a
commit
0efafc50dc
@ -2,6 +2,8 @@
|
|||||||
- InfluxDB enhancement: support for multiple hosts (with retries) and raw queries (Issue #318, thx @toddboom)
|
- InfluxDB enhancement: support for multiple hosts (with retries) and raw queries (Issue #318, thx @toddboom)
|
||||||
- Added rounding for graphites from and to time range filters
|
- Added rounding for graphites from and to time range filters
|
||||||
for very short absolute ranges (Issue #320)
|
for very short absolute ranges (Issue #320)
|
||||||
|
- Increased resolution for graphite datapoints (maxDataPoints), now equal to panel pixel width. (Closes #5)
|
||||||
|
|
||||||
|
|
||||||
# 1.5.3 (2014-04-17)
|
# 1.5.3 (2014-04-17)
|
||||||
- Add support for async scripted dashboards (Issue #274)
|
- Add support for async scripted dashboards (Issue #274)
|
||||||
|
@ -230,7 +230,7 @@ function (angular, app, $, _, kbn, moment, timeSeries) {
|
|||||||
$scope.updateTimeRange = function () {
|
$scope.updateTimeRange = function () {
|
||||||
$scope.range = filterSrv.timeRange();
|
$scope.range = filterSrv.timeRange();
|
||||||
$scope.rangeUnparsed = filterSrv.timeRange(false);
|
$scope.rangeUnparsed = filterSrv.timeRange(false);
|
||||||
$scope.resolution = Math.ceil(($(window).width() * ($scope.panel.span / 12)) / 2);
|
$scope.resolution = Math.ceil($(window).width() * ($scope.panel.span / 12));
|
||||||
$scope.interval = '10m';
|
$scope.interval = '10m';
|
||||||
|
|
||||||
if ($scope.range) {
|
if ($scope.range) {
|
||||||
|
Loading…
Reference in New Issue
Block a user