Skip to content

Commit b2b4c79

Browse files
committed
log removing
1 parent 2e4975f commit b2b4c79

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

app/scripts/chart-factory/high-chart-factory.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ angular.module('apacheZeppelinGsocApp').factory('HighChartFactory', function(
5454
}
5555

5656
function getHighChart(error, rows) {
57-
console.log('loading for view');
58-
console.log(rows);
57+
//console.log('loading for view');
58+
//console.log(rows);
5959
HighChartChartModel.series[0].data = rows;
6060
}
6161

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

8484
function getHighYaxis(error, rows) {
85-
console.log(rows);
85+
//console.log(rows);
8686
highAxisLabels = rows;
8787
HighChartFactory.viewModel.xAxis.categories = highAxisLabels;
8888
}

app/scripts/chart-factory/nvd3-chart-factory.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ angular.module('apacheZeppelinGsocApp').factory('NVD3ChartFactory', function(
5151
'values': rows
5252
};
5353
NVD3ChartChartModel.data[0] = data;
54-
console.log(NVD3ChartChartModel.data);
54+
//console.log(NVD3ChartChartModel.data);
5555
}
5656

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

8585
function getNVD3Yaxis(error, rows) {
86-
console.log(rows);
86+
//console.log(rows);
8787
nvd3AxisLabels = rows;
8888
NVD3ChartFactory.viewModel.options.chart.xAxis = {
8989
//'axisLabel': 'Make',

0 commit comments

Comments
 (0)