3
I am developing a graphic and would like to put the values of the Y axis as the image below:
I have verified that it is possible to do this through custom string formats in that way ChartArea.AxisY.LabelStyle.Format = "formato customizado"
, however I could not create a format for output I need, someone has idea of which format to use to reach the expected output?
Search items:
Formatting Chart Axis Labels
Format value with Brazilian currency mask
In this case, the table in the question is only to demonstrate the input in the Y axis and which output I expect, but the graph is filled automatically and the axis ranges are also generated automatically
– mateusalxd
Okay, and what does that mean? You just want to format the number?
– Maniero
Yes, for example
ChartArea.AxisY.LabelStyle.Format = "{0:0,}";
– mateusalxd
ChartArea.AxisY.LabelStyle.Format
is not aString.Format
. This is something else from some library you’re using. You have to explain your question better. What kind of numbers?– Maniero
I set the question, if you think you misread the first one, tell me I’ll rule that one out and create a new one
– mateusalxd