diff --git a/src/app/panels/valuehistogram/editor.html b/src/app/panels/valuehistogram/editor.html
new file mode 100644
index 0000000000000..3f09b732cd5bc
--- /dev/null
+++ b/src/app/panels/valuehistogram/editor.html
@@ -0,0 +1,31 @@
+
');
+ elem.bind("plothover", function (event, pos, item) {
+ var group, value;
+ if (item) {
+ if (item.series.info.alias || scope.panel.tooltip.query_as_alias) {
+ group = '
' +
+ ' ' + ' ' +
+ (item.series.info.alias || item.series.info.query)+
+ ' ';
+ } else {
+ group = kbn.query_color_dot(item.series.color, 15) + ' ';
+ }
+ value = (scope.panel.stack && scope.panel.tooltip.value_type === 'individual') ?
+ item.datapoint[1] - item.datapoint[2] :
+ item.datapoint[1];
+ $tooltip
+ .html(
+ group + value + " @ " + item.datapoint[0]
+ )
+ .place_tt(pos.pageX, pos.pageY);
+ } else {
+ $tooltip.detach();
+ }
+ });
+ }
+ };
+ });
+
+});
diff --git a/src/app/panels/valuehistogram/queriesEditor.html b/src/app/panels/valuehistogram/queriesEditor.html
new file mode 100644
index 0000000000000..414de272ef8ac
--- /dev/null
+++ b/src/app/panels/valuehistogram/queriesEditor.html
@@ -0,0 +1,43 @@
+
Charted
+
+
+
+
Markers
+
+
+ Here you can specify a query to be plotted on your chart as a marker. Hovering over a marker will display the field you specify below. If more documents are found than the limit you set, they will be scored by Elasticsearch and events that best match your query will be displayed.
+
+
+
+
+ Enable
+
+
+
+ Marker Query
+
+
+
+ Tooltip field
+
+
+
+ Limit Max markers on the chart
+
+
+
+ Sort Determine the most relevant markers using this field
+
+
+
+
diff --git a/src/app/panels/valuehistogram/styleEditor.html b/src/app/panels/valuehistogram/styleEditor.html
new file mode 100644
index 0000000000000..d8de8388804c8
--- /dev/null
+++ b/src/app/panels/valuehistogram/styleEditor.html
@@ -0,0 +1,78 @@
+
+
+
Chart Options
+
+ Bars
+
+
+ Lines
+
+
+ Points
+
+
+ xAxis
+
+ yAxis
+
+ Line Fill
+
+
+
+ Line Width
+
+
+
+ Point Radius
+
+
+
+
+
Multiple Series
+
+ Stack
+
+
+ Percent Stack as a percentage of total
+
+
+
+ Stacked Values How should the values in stacked charts to be calculated?
+
+
+
+
+
+
diff --git a/src/config.js b/src/config.js
index 80c0c8129a728..6ae70f599f117 100644
--- a/src/config.js
+++ b/src/config.js
@@ -49,7 +49,8 @@ function (Settings) {
'bettermap',
'query',
'terms',
- 'sparklines'
+ 'sparklines',
+ 'valuehistogram'
]
});
});