updating error message

This commit is contained in:
Shelby Sturgis 2015-06-03 16:02:43 -04:00
parent fa65695241
commit 4ddcc4f20a

View file

@ -260,7 +260,7 @@ define(function (require) {
/** error thrown when wiggle chart is selected for non linear data */
errors.InvalidWiggleSelection = function InvalidWiggleSelection() {
KbnError.call(this,
'The wiggle option can only be used with the Date Histogram or Histogram aggregation.',
'In wiggle mode the area chart requires ordered values on the x-axis. Try using a Histogram or Date Histogram aggregation.',
errors.InvalidWiggleSelection);
};
inherits(errors.InvalidWiggleSelection, KbnError);