Fix up JSDoc

This commit is contained in:
Brenda Wallace
2018-01-03 13:00:09 +13:00
parent 591c95dca2
commit 122a7f17e2
4 changed files with 4 additions and 3 deletions

View File

@@ -15,7 +15,7 @@
/**
* data object for bar group
* @param {int} data The graph data
* @param {Object} graph configuration
*/
function BarGroup(data) {
this._data = data;

View File

@@ -12,6 +12,7 @@ the svg
/**
* new heighscale object
* @param {Object} data Graph configuration
*/
function HeightScale(data) {
this._data = data;

View File

@@ -19,7 +19,7 @@ The main dimensions of the graph are rendered here.
/**
* create a new graph object
* @param {??} bar graph data
* @param {Object} data Graph configuration
*/
function HorizontalBarGraph(data) {
this._data = data;

View File

@@ -12,7 +12,7 @@ to the display size of the svg
/**
* Object for WidthScale
* @param {?} data Graph data
* @param {Object} data Graph configuration
*/
function WidthScale(data) {
this._data = data;