truncated rowname in uitable
Show older comments
Answers (2)
Use an option of preserving the variable name rule - see this example:
% File Name to Be Imported:
filename = 'DATA_Sample_Table.csv';
OPTIONS = detectImportOptions(filename);
OPTIONS.VariableNamingRule = 'preserve'; % Preserve Original Variable Names
% Read DATA:
T_DATA = readtable(filename, OPTIONS);
% Display the Imported Table:
disp(T_DATA);
Walter Roberson
on 20 Jan 2025
0 votes
Adjust the ColumnWidth property of the uitable.
5 Comments
shamal
on 20 Jan 2025
Walter Roberson
on 20 Jan 2025
I do not understand what you are trying to say.
shamal
on 20 Jan 2025
shamal
on 20 Jan 2025
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
