plotly_matlab
plotly_matlab copied to clipboard
Plotly Graphing Library for MATLAB®
1. matlab report: `Error using base64decode (line 60)`; 2. export svg cannot open rightly, becuase svg source are garbled.
add the line code `filename=[filename,'.',char(imageFormat)];`
1. fix CJK garbled character in Windows system 2. shrink picture size & ipynb file size
## bug ### normal figure title   ### heatmap  ### other figure  ## solved method ```bash sed -i 's###g' `find /your_plotly_install_path/plotly/plotlyfig_aux -name "*.m"` ```
Escaped character '\s' is not valid. See 'doc sprintf'
NOTE: I reopened the pull request after a fail in branch selection. Old one can be deleted Currently, patch elements don't have any opacity. So, when using a patch with...
The URL https://community.plotly.com/c/api/matlab/ is not valid anymore, the correct URL to access the community is now https://community.plotly.com/c/graphing-libraries/matlab/ I changed it everywhere in the project.
Would it be possible to remove margin (on the left side of the plot), because it makes the plots in the online docs function badly. When you open the plot...
none of these work- https://github.com/plotly/plotly.matlab-docs/blob/main/matlab/2021-08-04-gauge-charts.md
``` load SimulatedStock.mat; candle(TMW(end-20:end,:),'b'); title('Candlestick chart for TMW') fig2plotly(gcf); ``` does not work. The following plot plots but results in an warning: ``` load disney.mat candle(dis('3/31/98::4/30/98')) title('Disney 3/31/98 to 4/30/98')...