Ask Your Question
3

How can the axis title be made visible on Plotly.NET for C#?

asked 2022-11-24 11:00:00 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2022-01-22 03:00:00 +0000

qstack gravatar image

To make the axis title visible on Plotly.NET for C#, you need to set the title property of the axis object. Here's an example:

using Plotly; // create a scatter plot var scatterPlot = Chart.Scatter(  new XY[]  {  new XY(1, 2),  new XY(2, 3),  new XY(3, 4),  } ); // set the x-axis title scatterPlot.WithXTitle("X-axis"); // set the y-axis title scatterPlot.WithYTitle("Y-axis"); // render the plot var div = scatterPlot.GetHtml(); 

In this example, we create a scatter plot using the Chart.Scatter method. Then, we set the x-axis title using the WithXTitle method, and the y-axis title using the WithYTitle method. Finally, we render the plot using the GetHtml method.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-11-24 11:00:00 +0000

Seen: 8 times

Last updated: Jan 22 '22