Skip to content

Commit

Permalink
Clarify axes error when building data frame
Browse files Browse the repository at this point in the history
  • Loading branch information
rogargon committed Aug 28, 2023
1 parent 650958f commit 62d8346
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/app/facet/list-facet/list-facet.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -356,12 +356,11 @@ export class ListFacetComponent implements OnInit, OnDestroy {
const new_url = url[0]+ '/' + url[1]+ '/' + url[2]
+ '/charts:' + this.extractFromURI(this.possiblePoints[0][1]) + '&id'
this.router.navigate([new_url])

}

createDataFrame() {
if (this.selectedAxe1 == this.selectedAxe2 || this.selectedAxe1 == null || this.selectedAxe2 == null){
alert("Not OK!")
alert("Error creating data frame based on the selected axes")
} else {
this.chartRepresentation = true;
const url = this.route.snapshot.url.toString().split(',');
Expand Down Expand Up @@ -424,7 +423,6 @@ export class ListFacetComponent implements OnInit, OnDestroy {
}
}


detectAxes(top, axesClassification){
const returnAxes = [];
for (const attribute in axesClassification){
Expand All @@ -446,7 +444,6 @@ export class ListFacetComponent implements OnInit, OnDestroy {
return name;
}

// resources, ............................, numericalClassification: {}
chartRoleClassifier(json_input: Description, background_axes, background_numerical){
const json_object = JSON.parse(json_input.asJsonLd());
for (const attribute in json_object){
Expand Down
Empty file modified src/assets/rhizomikEye.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 62d8346

Please sign in to comment.