Minor grid-lines spacing issue
29 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ben Hall
am 25 Mär. 2017
Kommentiert: Ben Hall
am 29 Apr. 2017
I have created a GUI using GUIDE and have two checkboxes, where one toggles minor and the other toggles major gridlines. They both work by activating the appropriate lines, but the minor grid is exactly under the major. (So in effect only the major are visible.)
How can I fix this issue so that minor grid-lines appear in between the major as would be expected?
Note: I am using MATLAB 2015a
Major Grid Active

Minor Grid Active

Required Grid

0 Kommentare
Akzeptierte Antwort
Geoff Hayes
am 28 Mär. 2017
Ben - how are you enabling and disabling the grid lines? If you are checkboxes are named checkbox1 and checkbox2 for the major and minor grid lines respectively, then the callbacks for both would be
function checkbox1_Callback(hObject, eventdata, handles)
if get(hObject,'Value') == 1
grid(handles.axes1,'on');
elseif get(handles.checkbox2,'Value') == 0
grid(handles.axes1,'off');
end
function checkbox2_Callback(hObject, eventdata, handles)
if get(hObject,'Value') == 1
grid(handles.axes1,'minor');
else
grid(handles.axes1,'minor');
if get(handles.checkbox1,'Value') == 0
grid(handles.axes1,'off');
end
end
We just need to add special cases to ensure that the major grid lines are turned off or left on depending upon whether the minor grid lines are off. See the attached code for an example.
5 Kommentare
Geoff Hayes
am 30 Mär. 2017
Ben - when I run your code, I can see the major and minor grid lines (they behave as expected). Am I misunderstanding something?
Weitere Antworten (1)
Omanshu Thapliyal
am 28 Mär. 2017
Another workaround apart from the answer above could be to specify the 'XMinorTickValues'. This lets you control the resolution of the minor grid. You could do so by getting the axis handle as
ax = gca;
ax.XMinorGrid = 'on';
ax.XAxis.MinorTickValues = 260:10:380;
You could set the minor grid resolution in the following part of your callback and change the minor grid lines to wherever you want them to be.
if get(hObject, 'Value') == 1
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!