Skip to content

Commit

Permalink
log removing
Browse files Browse the repository at this point in the history
  • Loading branch information
Madhuka committed Jul 1, 2015
1 parent 2e4975f commit b2b4c79
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/scripts/chart-factory/high-chart-factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ angular.module('apacheZeppelinGsocApp').factory('HighChartFactory', function(
}

function getHighChart(error, rows) {
console.log('loading for view');
console.log(rows);
//console.log('loading for view');
//console.log(rows);
HighChartChartModel.series[0].data = rows;
}

Expand All @@ -82,7 +82,7 @@ angular.module('apacheZeppelinGsocApp').factory('HighChartFactory', function(
var highAxisLabels = {};

function getHighYaxis(error, rows) {
console.log(rows);
//console.log(rows);
highAxisLabels = rows;
HighChartFactory.viewModel.xAxis.categories = highAxisLabels;
}
Expand Down
4 changes: 2 additions & 2 deletions app/scripts/chart-factory/nvd3-chart-factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ angular.module('apacheZeppelinGsocApp').factory('NVD3ChartFactory', function(
'values': rows
};
NVD3ChartChartModel.data[0] = data;
console.log(NVD3ChartChartModel.data);
//console.log(NVD3ChartChartModel.data);
}

function nvd3Model(d) {
Expand Down Expand Up @@ -83,7 +83,7 @@ angular.module('apacheZeppelinGsocApp').factory('NVD3ChartFactory', function(
var nvd3AxisLabels = {};

function getNVD3Yaxis(error, rows) {
console.log(rows);
//console.log(rows);
nvd3AxisLabels = rows;
NVD3ChartFactory.viewModel.options.chart.xAxis = {
//'axisLabel': 'Make',
Expand Down

0 comments on commit b2b4c79

Please sign in to comment.