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

Bug or restriction by design? #155

Open
GitHubUserEH opened this issue Apr 24, 2023 · 1 comment
Open

Bug or restriction by design? #155

GitHubUserEH opened this issue Apr 24, 2023 · 1 comment
Assignees
Labels

Comments

@GitHubUserEH
Copy link

I am not sure if this is a bug or if this is a limitation.

In a chart, a maximum of 62 values can be displayed vertically. If you want to display more elements, it works in the horizontal axe, but nothing is displayed vertically. On the contrary, the higher the number of elements, the less vertical bars are shown. See the attached PDF with the screenshoots.

Code from the main loop to test:

void loop()
{
int ArH[128];
int ArV[128];

for (int i = 0; i < 128; i++)
{
ArH[i] = i;
ArV[i] = (int)random(1, 999);
}

Test_Chart.updateX(ArH, 62); // <= 62 working <= 128 working
Test_Chart.updateY(ArV, 62); // <= 62 working >= 63 no vertikal bar is showing !

dashboard.sendUpdates();

delay(2000);
}

ESP32Chart.pdf

Copy link

stale bot commented Feb 11, 2024

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If you are still facing the problem, please tag the author of repository and state your concern.

@stale stale bot added the wontfix label Feb 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants