MATLAB: Gantt Chart on Matlab

ganttMATLAB

Hello,
i have this Matrix:
1 0 11
2 11 24
3 24 40
4 40 60
5 60 80
My actual plot look like this
How kan i delete the blue bars?
How can i make a Gannt Chart, from my Data Matrix?

Best Answer

This show how to make Gannt Chart from your data
A = [ 1 0 11
2 11 24
3 24 40
4 40 60
5 60 80];
h = barh(A(:,2:3), 'stacked');
h(1).Visible = 'off';
Related Question