-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
When the nomaRound and nomaConfig changes at the same time, it fails to update both. It updates only nomaRound.
$scope.changeConfigContinuousBinningNor = function() {
if ($scope.activeData != 'Continuous Variables') {
$scope.changeActiveDataContinuous();
}
// $scope.nomaRound = false;
$scope.nomaConfig.isXUniformSpacing = true;
$scope.nomaConfig.isYUniformSpacing = true;
$scope.nomaConfig.xDim = 'gender';
$scope.nomaConfig.yDim = 'age';
$scope.nomaConfig.colorDim = 'mammo';
$scope.nomaConfig.XAlign = 'justify';
$scope.nomaConfig.YAlign = 'left';
$scope.nomaConfig.isYNumber = true;
};Reactions are currently unavailable