I have drawn a plot using "plotArrays" function in Dymola. I would like to label X-axis in meters(Ideally, I need it to be flexible so that I can later change it to millimeters, micrometers, etc..). I want to label Y-axis similarly in volts which I have done already using
plotArrays(x_axis,phie,legend=names,units=fill("V",size(phie,2)));
and I can read the values in volts and also change to mV etc.. However, its not 'visible' in Y-axis as you can see in the plot below. So, How can I label the axes separately?

Thanks a lot!
I don't know any more efficient possibility than this:
with:
idbeing the number shown in the original ploterase=falseto ensure that the content is not modifiedgrid=true(re-)enabling the grid*TitleType=2saying that there is a custom title*Titlebeing the string to put thereThis will result in the plot being resized to the default size. You can use
plotSetup()to get the current setup, includingposition, which you can then pass (manually) to thecreatePlot()command to result in the original size again.Not very elegant, but I don't know any other possibility...