Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[visualize] Fix top line of "Agents status" visualization #1379

Closed
jesusgn90 opened this issue Apr 15, 2019 · 2 comments
Closed

[visualize] Fix top line of "Agents status" visualization #1379

jesusgn90 opened this issue Apr 15, 2019 · 2 comments
Assignees
Labels
type/enhancement Enhancement issue

Comments

@jesusgn90
Copy link
Contributor

Hi team, we need to found a way to make the top line be fully displayed and not just half of the line as the screenshot below:

image

Regards

@juankaromo
Copy link
Contributor

Update
Fixed the problem of 'covered dots' with these patch styles:

.visChart__container .chart > svg{
  position: absolute;
}

.visChart__container svg g.points.line, 
.visChart__container svg g.points.area {
  display: contents;
}

@jesusgn90
Copy link
Contributor Author

The next line is unsafe:

if ((visParams || {}).valueAxes && (this.visData.series || [])[0]) {

Replace it with the next ones:

const valueAxes = (visParams || {}).valueAxes || false;
const hasSeries = ((this.visData || {}).series || []).length;
if (valueAxes && hasSeries) {

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type/enhancement Enhancement issue
Projects
None yet
Development

No branches or pull requests

2 participants