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

Enhanced Plot Controls (H_AXES for Linewidth, Tick Intervals, and Font Size Settings) #1758

Open
c-yuwei opened this issue Nov 5, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@c-yuwei
Copy link
Collaborator

c-yuwei commented Nov 5, 2024

This request proposes adding a settings panel feature to control the following plot attributes: linewidth, X/Y tick intervals (e.g., 0:1:10 or 0:2:10), and axis font size (for both X-Axis and Y-Axis tick labels).

Currently, a workaround is available by accessing the axes handle and using the code below:

h_axes = gui_item.get('PF').get('H_AXES');
set(h_axes, 'linewidth', 3)
set(h_axes, 'XTick', 0:0.2:1.0)
set(h_axes, 'YTick', 0:0.2:1.0)
set(h_axes, 'FontSize', 32)

This code adjusts the plot layout as follows:

Before After
Pipeline NN CON-FUN ROC - Before Pipeline NN CON-FUN ROC - After
@c-yuwei c-yuwei added the enhancement New feature or request label Nov 5, 2024
@c-yuwei c-yuwei changed the title [Feature Req] Enhanced Plot Controls (H_AXES for Linewidth, Tick Intervals, and Font Size Settings) Enhanced Plot Controls (H_AXES for Linewidth, Tick Intervals, and Font Size Settings) Nov 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant