5

I want to display values on the top of the bars in asp.net chart. Also I want to hide the x axis while displaying it. For mock up please see the image below. Thanks.

Bar Chart with values on Bar in asp.net

I tried following but doesn't work.

var c = HorizontalChart;
        //c.ChartAreas.Add(new ChartArea("HChartArea"));
        //c.ChartAreas[0].BackHatchStyle = ChartHatchStyle.None;
        c.ChartAreas[0].AxisX.MajorGrid.Enabled = false;
        c.ChartAreas[0].AxisY.MajorGrid.Enabled = false;
        c.ChartAreas[0].AxisY.CustomLabels="Code here for Lable values" <-------------
        c.Width = 300;
        c.Height = 300;
        Series myHorizontalSeries = new Series();
        myHorizontalSeries.Color = System.Drawing.Color.Blue;
        myHorizontalSeries.ChartType = SeriesChartType.Bar;
        myHorizontalSeries.Points.DataBindXY(new string[] { "one", "two", "three" }, new int[] { 1, 2, 3 });
        c.Series.Add(myHorizontalSeries);
hungrycoder
  • 507
  • 2
  • 9
  • 24

3 Answers3

7

You may try :

I want to display values on the top of the bars in asp.net chart.

myHorizontalSeries.IsValueShownAsLabel = true;

Also I want to hide the x axis while displaying it.

c.ChartAreas[0].AxisX.Enabled = AxisEnabled.False;
Brian Mains
  • 50,520
  • 35
  • 148
  • 257
jbl
  • 15,179
  • 3
  • 34
  • 101
6

You should try setting the Axis Enabled property to false

c.ChartAreas[0].AxisX.Enabled = AxisEnabled.False;

To show the values you set the IsValueShownAsLabel property of the series to true

V4Vendetta
  • 37,194
  • 9
  • 78
  • 82
4

another example you can show values like labels

c.Series[myHorizontalSeries].Label = "#VALY";

Hope I've helped.

Drako
  • 769
  • 1
  • 8
  • 23