Improve MacOS and Linux instructions on website
See original GitHub issueBug Report
Issue: hieroglyphics on plot
Reproducing: whenever i try to make any plot i do not get figure as expected. As an example i took snippet from cookbook
// a code sample may improve communication
ar plt = new ScottPlot.Plot(600, 400);
// sample data
double[] xs = DataGen.Consecutive(51);
double[] sin = DataGen.Sin(51);
double[] cos = DataGen.Cos(51);
// plot the data
plt.AddScatter(xs, sin);
plt.AddScatter(xs, cos);
// customize the axis labels
plt.Title("ScottPlot Quickstart");
plt.XLabel("Horizontal Axis");
plt.YLabel("Vertical Axis");
plt.SaveFig("quickstart_scatter.png");
and got this I tried to invoke SetCulture method but it did not workout.
System Details
- ScottPlot Version: 4.1.45
- Operating System: MacOS 11.2.3 (Big Sur)
- Application Type: console
- .NET Version: .NET 5, .NET 6
Issue Analytics
- State:
- Created a year ago
- Comments:7 (5 by maintainers)
Top Results From Across the Web
Customizing macOS for Linux Administration (or ...
6 Steps to Customizing macOS for Linux Administration · Open Disk Utility (/Applications/Utilities/Disk Utility.app). · Power down your computer ...
Read more >Applying Your Linux Skills to macOS: Terminal BASH and ...
Applying Your Linux Skills to macOS: Terminal BASH and Common Commands · All commands are case sensitive. · Regular options (-h) and POSIX...
Read more >Why I switched from Mac to Linux
I installed Atom, VLC, Keybase, Brave Browser, Krita, Blender, and Thunderbird in a matter of minutes. I installed other software with the Apt ......
Read more >How to Set Up a Local Web Server (Windows, Mac, Linux)
It is very easy to set up a local web server on various OSes. Here we will show you how to setup Apache...
Read more >Command Line Tutorial: Usage in Linux and macOS
Apple macOS and most Linux servers use almost all the exact same commands, so this tutorial applies to both. Even if you use...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The wording “You may also need to…” is misleading, it implies that you only need to do that if you’re using specific features or have a niche use-case. Normally when it shows up in docs it’s something that you can (normally) ignore.
I think better wording is “You will also need to…”. It may still benefit from being placed more prominently, although it’s in the same place where we tell users to install
libgdiplus
, and I don’t think we get lots of people reporting issues because they didn’t see that. But I don’t see all the issues (or get any of the emails). Plus there are likely a lot of people that cannot get it working and just switch to an alternative library, rather than open an issue.Thanks a lot, that explicit installation of
System.Drawing.Common
has really helped. So you could write about the case in the docs or smth.