-
- Spyable
-
-
- The panel spy shows 'behind the scenes' information about a panel. It can
- be accessed by clicking the
in the top right
- of the panel.
+
+
+ Chart Options
+
+
+
+ Line Fill
+
+
+
+ Line Width
+
+
+
+ Time correction
+
+
+
+ Zoom Links
+
+
+
Panel Spy
+
+
+ Spyable
+
+
+ The panel spy shows 'behind the scenes' information about a panel. It can
+ be accessed by clicking the in the top right
+ of the panel.
+
diff --git a/panels/histogram/module.js b/panels/histogram/module.js
index 1bc9d5b34b3..7e9c515b25c 100644
--- a/panels/histogram/module.js
+++ b/panels/histogram/module.js
@@ -7,6 +7,7 @@ angular.module('kibana.histogram', [])
interval : secondsToHms(calculate_interval($scope.from,$scope.to,40,0)/1000),
show : ['bars','y-axis','x-axis','legend'],
fill : 3,
+ linewidth : 3,
timezone : 'browser', // browser, utc or a standard timezone
spyable : true,
zoomlinks : true,
@@ -148,7 +149,6 @@ angular.module('kibana.histogram', [])
i++;
});
- eventBus.broadcast($scope.$id,$scope.panel.group,'hits',$scope.hits)
$scope.$emit('render')
if(_segment < $scope.panel.index.length-1) {
$scope.get_data(_segment+1,query_id)
@@ -236,7 +236,12 @@ angular.module('kibana.histogram', [])
},
series: {
stack: show.stack,
- lines: { show: show.lines, fill: scope.panel.fill/10 },
+ lines: {
+ show: show.lines,
+ fill: scope.panel.fill/10,
+ lineWidth: scope.panel.linewidth,
+ steps: true
+ },
bars: { show: show.bars, fill: 1, barWidth: barwidth/1.8 },
points: { show: show.points, fill: 1, fillColor: false},
shadowSize: 1
@@ -294,23 +299,25 @@ angular.module('kibana.histogram', [])
var tooltip = $('#pie-tooltip').length ?
$('#pie-tooltip') : $('
');
//var tooltip = $('#pie-tooltip')
- tooltip.text(contents).css({
+ tooltip.html(contents).css({
position: 'absolute',
top : y + 5,
left : x + 5,
- color : "#FFF",
- border : '1px solid #FFF',
- padding : '2px',
- 'font-size': '8pt',
- 'background-color': '#000',
+ color : "#000",
+ border : '3px solid #000',
+ padding : '10px',
+ 'font-size': '11pt',
+ 'font-weight' : 'bold',
+ 'background-color': '#FFF',
+ 'border-radius': '10px',
}).appendTo("body");
}
elem.bind("plothover", function (event, pos, item) {
if (item) {
- var percent = parseFloat(item.series.percent).toFixed(1) + "%";
tt(pos.pageX, pos.pageY,
- item.datapoint[1].toFixed(1) + " @ " +
+ "
"+
+ item.datapoint[1].toFixed(0) + " @ " +
new Date(item.datapoint[0]).format('mm/dd HH:MM:ss'));
} else {
$("#pie-tooltip").remove();
diff --git a/panels/hits/editor.html b/panels/hits/editor.html
index d4833703c26..0af41993a3a 100644
--- a/panels/hits/editor.html
+++ b/panels/hits/editor.html
@@ -1,23 +1,46 @@
-
+
+
+
Font Size
+
+
- Run Query
+ Aggregate Queries
-
- With query running disabled, this panel receives its hit count from a histogram panel. If multiple queries are running this will show the total of all queries .
-
-
- This shows a simple count of how many records match your filtered query. If multiple queries are sent from a single panel the
first query will be displayed
+
Arrangement
+
-
-
-
-
Search
-
Add Query
+
Add Query