Commit 052dc3fa by Valera Rozuvan Committed by Alexander Kryklia

New feature: For bar graphs, can specify bar width and bar alignment.

parent 271c182f
...@@ -8,18 +8,7 @@ define('Graph', ['logme'], function (logme) { ...@@ -8,18 +8,7 @@ define('Graph', ['logme'], function (logme) {
function Graph(gstId, config, state) { function Graph(gstId, config, state) {
var plotDiv, dataSeries, functions, xaxis, yaxis, numPoints, xrange, var plotDiv, dataSeries, functions, xaxis, yaxis, numPoints, xrange,
asymptotes, movingLabels, xTicksNames, yTicksNames; asymptotes, movingLabels, xTicksNames, yTicksNames, graphBarWidth, graphBarAlign;
state.barsConfig = {
'N': 0,
'delta': 0,
'diff': 0,
'width': 0,
'width_perc': 0.8,
'margin': 0.1,
'total': 0.4,
'total_half': 0.2
};
// We need plot configuration settings. Without them we can't continue. // We need plot configuration settings. Without them we can't continue.
if ($.isPlainObject(config.plot) === false) { if ($.isPlainObject(config.plot) === false) {
...@@ -62,6 +51,15 @@ define('Graph', ['logme'], function (logme) { ...@@ -62,6 +51,15 @@ define('Graph', ['logme'], function (logme) {
return; return;
} }
graphBarWidth = 1;
graphBarAlign = null;
getBarWidth();
getBarAlign();
logme('graphBarWidth = ' + graphBarWidth);
logme('graphBarAlign = ' + graphBarAlign);
// Get the user defined functions. If there aren't any, don't do // Get the user defined functions. If there aren't any, don't do
// anything else. // anything else.
createFunctions(); createFunctions();
...@@ -90,6 +88,52 @@ define('Graph', ['logme'], function (logme) { ...@@ -90,6 +88,52 @@ define('Graph', ['logme'], function (logme) {
return; return;
function getBarWidth() {
if (config.plot.hasOwnProperty('bar_width') === false) {
return;
}
if (typeof config.plot.bar_width !== 'string') {
logme('ERROR: The parameter config.plot.bar_width must be a string.');
return;
}
if (isFinite(graphBarWidth = parseFloat(config.plot.bar_width)) === false) {
logme('ERROR: The parameter config.plot.bar_width is not a valid floating number.');
graphBarWidth = 1;
return;
}
return;
}
function getBarAlign() {
if (config.plot.hasOwnProperty('bar_align') === false) {
return;
}
if (typeof config.plot.bar_align !== 'string') {
logme('ERROR: The parameter config.plot.bar_align must be a string.');
return;
}
if (
(config.plot.bar_align.toLowerCase() !== 'left') &&
(config.plot.bar_align.toLowerCase() !== 'center')
) {
logme('ERROR: Property config.plot.bar_align can be one of "left", or "center".');
return;
}
graphBarAlign = config.plot.bar_align.toLowerCase();
return;
}
function createMovingLabelFunctions() { function createMovingLabelFunctions() {
var c1, returnStatus; var c1, returnStatus;
...@@ -1015,9 +1059,7 @@ define('Graph', ['logme'], function (logme) { ...@@ -1015,9 +1059,7 @@ define('Graph', ['logme'], function (logme) {
if (newFunctionObject['bars'] === true) { if (newFunctionObject['bars'] === true) {
newFunctionObject['line'] = false; newFunctionObject['line'] = false;
newFunctionObject['dot'] = false; newFunctionObject['dot'] = false;
// To do: See if need to do anything here.
newFunctionObject.barIndex = state.barsConfig.N;
state.barsConfig.N += 1;
} else if ( } else if (
(newFunctionObject['dot'] === false) && (newFunctionObject['dot'] === false) &&
(newFunctionObject['line'] === false) (newFunctionObject['line'] === false)
...@@ -1078,7 +1120,7 @@ define('Graph', ['logme'], function (logme) { ...@@ -1078,7 +1120,7 @@ define('Graph', ['logme'], function (logme) {
function generateData() { function generateData() {
var c0, c1, functionObj, seriesObj, dataPoints, paramValues, x, y, var c0, c1, functionObj, seriesObj, dataPoints, paramValues, x, y,
start, end, step, tempX; start, end, step, numNotUndefined;
paramValues = state.getAllParameterValues(); paramValues = state.getAllParameterValues();
...@@ -1087,14 +1129,6 @@ define('Graph', ['logme'], function (logme) { ...@@ -1087,14 +1129,6 @@ define('Graph', ['logme'], function (logme) {
for (c0 = 0; c0 < functions.length; c0 += 1) { for (c0 = 0; c0 < functions.length; c0 += 1) {
functionObj = functions[c0]; functionObj = functions[c0];
seriesObj = {};
dataPoints = [];
// For counting number of points added. In the end we will
// compare this number to 'numPoints' specified in the config
// JSON.
c1 = 0;
try { try {
start = xrange.min.apply(window, paramValues); start = xrange.min.apply(window, paramValues);
} catch (err) { } catch (err) {
...@@ -1117,10 +1151,16 @@ define('Graph', ['logme'], function (logme) { ...@@ -1117,10 +1151,16 @@ define('Graph', ['logme'], function (logme) {
return false; return false;
} }
step = (end - start) / (numPoints - 1);
state.barsConfig.delta = (step * state.barsConfig.total) / state.barsConfig.N; seriesObj = {};
state.barsConfig.diff = step * state.barsConfig.total_half; dataPoints = [];
// For counting number of points added. In the end we will
// compare this number to 'numPoints' specified in the config
// JSON.
c1 = 0;
step = (end - start) / (numPoints - 1);
// Generate the data points. // Generate the data points.
for (x = start; x <= end; x += step) { for (x = start; x <= end; x += step) {
...@@ -1143,18 +1183,12 @@ define('Graph', ['logme'], function (logme) { ...@@ -1143,18 +1183,12 @@ define('Graph', ['logme'], function (logme) {
return false; return false;
} }
if (functionObj.bars === true) {
tempX = x - state.barsConfig.diff + (functionObj.barIndex + state.barsConfig.margin) * state.barsConfig.delta;
} else {
tempX = x;
}
// Return the paramValues array to how it was before we // Return the paramValues array to how it was before we
// added 'x' variable to the end of it. // added 'x' variable to the end of it.
paramValues.pop(); paramValues.pop();
// Add the generated point to the data points set. // Add the generated point to the data points set.
dataPoints.push([tempX, y]); dataPoints.push([x, y]);
c1 += 1; c1 += 1;
...@@ -1233,9 +1267,13 @@ define('Graph', ['logme'], function (logme) { ...@@ -1233,9 +1267,13 @@ define('Graph', ['logme'], function (logme) {
seriesObj.bars = { seriesObj.bars = {
'show': functionObj.bars, 'show': functionObj.bars,
'barWidth': state.barsConfig.delta * state.barsConfig.width_perc 'barWidth': graphBarWidth
}; };
if (graphBarAlign !== null) {
seriesObj.bars.align = graphBarAlign;
}
if (functionObj.hasOwnProperty('pointSize')) { if (functionObj.hasOwnProperty('pointSize')) {
seriesObj.points.radius = functionObj.pointSize; seriesObj.points.radius = functionObj.pointSize;
} }
...@@ -1245,6 +1283,27 @@ define('Graph', ['logme'], function (logme) { ...@@ -1245,6 +1283,27 @@ define('Graph', ['logme'], function (logme) {
dataSeries.push(seriesObj); dataSeries.push(seriesObj);
} }
if (graphBarAlign === null) {
for (c0 = 0; c0 < numPoints; c0 += 1) {
// Number of points that have a value other than 'undefined' (undefined).
numNotUndefined = 0;
for (c1 = 0; c1 < dataSeries.length; c1 += 1) {
logme('c1 = ' + c1 + ', dataSeries[c1].data[c0][1] = ' + dataSeries[c1].data[c0][1]);
if (isFinite(parseInt(dataSeries[c1].data[c0][1])) === true) {
numNotUndefined += 1;
}
}
logme('Point number = ' + c0 + ', numNotUndefined = ' + numNotUndefined);
for (c1 = 0; c1 < dataSeries.length; c1 += 1) {
dataSeries[c1].data[c0][0] -= graphBarWidth * (0.5 * numNotUndefined - c1);
}
}
}
for (c0 = 0; c0 < asymptotes.length; c0 += 1) { for (c0 = 0; c0 < asymptotes.length; c0 += 1) {
// If the user defined a label for this asympote, then the // If the user defined a label for this asympote, then the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment