From f27d942bda1ec2f21e15944e176574695ef1a010 Mon Sep 17 00:00:00 2001 From: tripp Date: Thu, 21 Mar 2013 18:01:43 -0700 Subject: [PATCH] Fixed missing api doc comment in charts. --- src/charts/js/Axis.js | 1 + src/charts/js/NumericAxis.js | 1 + 2 files changed, 2 insertions(+) diff --git a/src/charts/js/Axis.js b/src/charts/js/Axis.js index ef580bc05b7..352e0710d7c 100644 --- a/src/charts/js/Axis.js +++ b/src/charts/js/Axis.js @@ -841,6 +841,7 @@ Y.Axis = Y.Base.create("axis", Y.Widget, [Y.AxisBase], { /** * Calculates points based off the majorUnit count or distance of the Axis. * + * @method _getPoints * @param {Object} startPoint An object literal containing the x and y coordinates of the first * point on the axis. * @param {Number} len The number of points on an axis. diff --git a/src/charts/js/NumericAxis.js b/src/charts/js/NumericAxis.js index a465c8c2005..4e72e3da910 100644 --- a/src/charts/js/NumericAxis.js +++ b/src/charts/js/NumericAxis.js @@ -60,6 +60,7 @@ Y.NumericAxis = Y.Base.create("numericAxis", Y.Axis, [Y.NumericImpl], { /** * Calculates points based off the majorUnit count or distance of the Axis. * + * @method _getPoints * @param {Object} startPoint An object literal containing the x and y coordinates of the first * point on the axis. * @param {Number} len The number of points on an axis.