Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4547004
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T16:02:04+00:00 2026-05-21T16:02:04+00:00

I want to show the text in the header cells in vertical orientation. How

  • 0

I want to show the text in the header cells in vertical orientation. How can I do it?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T16:02:05+00:00Added an answer on May 21, 2026 at 4:02 pm

    You can achieve the result you want using custom cell painting for the header.

    In answer to your comment asking for a way to align the text with the bottom of the cell, I’ve added comments to my code. They are hopefully clear.

    You need the following code (say in the Form_Load after initializing components)

    dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.EnableResizing;
    dataGridView1.ColumnHeadersHeight = 50;
    dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader;
    
    // Here we attach an event handler to the cell painting event
    dataGridView1.CellPainting += new DataGridViewCellPaintingEventHandler(dataGridView1_CellPainting);
    

    Next you need something like the following code:

    void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
    {
        // check that we are in a header cell!
        if (e.RowIndex == -1 && e.ColumnIndex >= 0)
        {
            e.PaintBackground(e.ClipBounds, true);
            Rectangle rect = this.dataGridView1.GetColumnDisplayRectangle(e.ColumnIndex, true);
            Size titleSize = TextRenderer.MeasureText(e.Value.ToString(), e.CellStyle.Font);
            if (this.dataGridView1.ColumnHeadersHeight < titleSize.Width)
            {
                this.dataGridView1.ColumnHeadersHeight = titleSize.Width;
            }
    
            e.Graphics.TranslateTransform(0, titleSize.Width);
            e.Graphics.RotateTransform(-90.0F);
    
            // This is the key line for bottom alignment - we adjust the PointF based on the 
            // ColumnHeadersHeight minus the current text width. ColumnHeadersHeight is the
            // maximum of all the columns since we paint cells twice - though this fact
            // may not be true in all usages!   
            e.Graphics.DrawString(e.Value.ToString(), this.Font, Brushes.Black, new PointF(rect.Y - (dataGridView1.ColumnHeadersHeight - titleSize.Width) , rect.X));
    
            // The old line for comparison
            //e.Graphics.DrawString(e.Value.ToString(), this.Font, Brushes.Black, new PointF(rect.Y, rect.X));
    
    
            e.Graphics.RotateTransform(90.0F);
            e.Graphics.TranslateTransform(0, -titleSize.Width);
            e.Handled = true;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want my DataGridView to show the entire header text (never clip or truncate
I just want to show text please wait while app is searching for satellite
I am using infragistic's ultragrid and I want to show the text portion of
I am using Delphi, and I want to show custom text in the buttons
I'm using jquery validate to validate my forms. I want to show a text
I want to show some help text(much like in a webpage when a field
I want to show an unicode text in my sdl program , but it
i have an alert box which i want to show some icelandic text but
I want to show 1 to 100 in a changeable text. I like to
if i want to have some text show up in a calligraphy font, how

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.