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

add ticktext example to matlab docs #414

Open
cldougl opened this issue Jun 6, 2016 · 0 comments
Open

add ticktext example to matlab docs #414

cldougl opened this issue Jun 6, 2016 · 0 comments
Labels

Comments

@cldougl
Copy link
Member

cldougl commented Jun 6, 2016

Add to https://plot.ly/matlab/axes/

trace1 = struct(...
  'x', [1, 2, 3, 4], ...
  'y', [10, 15, 20, 25], ...
  'type', 'scatter');
data = {trace1};

layout = struct(...
    'xaxis', struct(...
        'ticktext', {{'one'; 'two'; 'three'; 'four'}}, ...
        'tickvals', [1, 2, 3, 4]));

response = plotly(data, struct('layout', layout, 'filename', 'axestext', 'fileopt', 'overwrite'));
plot_url = response.url
@cldougl cldougl added the Matlab label Jun 7, 2016
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

1 participant