Ticket Q304079
Visible to All Users

Best fit for grid bands

created 14 years ago

I noticed that there exists this issue: http://www.devexpress.com/Support/Center/p/AS5563.aspx, which was "Accepted - release TBD" four and a half years ago.Any progress there?
If not, what is the way that you suggest I do this? From the screenshot attached, if I double click the band, I want its width to be set like the best fit width for columns. The column headers are hidden in the example, so I am only interested in the band width.

Comments (3)
DevExpress Support Team 14 years ago

    Hi Ioan ,
    Honestly speaking, we do not have plans to implement this suggestion in the near future.
    In your scenario, your task can be accomplished using the following piece of code:

    C#
    private void BestFitBands(AdvBandedGridView view) { view.BeginUpdate(); view.OptionsView.ShowColumnHeaders = true; foreach (BandedGridColumn col in view.Columns) col.Caption = col.OwnerBand.Caption; view.BestFitColumns(); view.OptionsView.ShowColumnHeaders = false; view.EndUpdate(); }

    Please try it in your application. Does it work for you?
    Thanks
    Dimitros

      Well, I don't want to them all at once. But rather like for the columns by double clicking in between them. Is there a special event i can handle or do i have to handle a mouse click event and then use CalcHitInfo to check it falls between bands?

        I tried the approach I mentioned, but it seems that column.BestFit() fits only the content of the cells. For instance, if the caption is "Very long string" and all cells ahave a value of 0, the width of the column will be very small and the majority of the caption text truncated. If I double click between regular columns, the column width fits the whole caption text.
        In addition, is there a way I can measure the text myself because some of the bands have some editors in their headers and I want it to always be visible, so the best width would have a minimum of text_length + editor_length. This is the code that I wrote
        void gridView_MouseDown(object sender, MouseEventArgs e)
                {
                    if (e.Clicks == 2)
                    {
                        var cc = _gridView.CalcHitInfo(e.X, e.Y);
                        if (cc.HitTest == BandedGridHitTest.BandEdge)
                        {
                            var band = cc.Band;
                            int width = band.Width;
                            for (int i = 0; i < band.Columns.Count; i++)
                            {
                                var column = band.Columns[i];
                                column.Caption = band.Caption;
                                column.BestFit();
                                width = column.Width;
                                //or column.GetBestWidth(), same result. Both dont take the caption into account
                                break;
                            }
                            band.Width = width;
                        }
                    }
                }

        Answers approved by DevExpress Support

        created 14 years ago (modified 12 years ago)

        Hi Ioan ,
        You can calculate a text size using the standard Graphics.MeasureString Method (String, Font) (System.Drawing). So, when an end-user has clicked a band header you need to calculate the band's width by summing the resulting width of the MeasureString method and your desired editor's width.
        Thanks
        Dimitros

          Comments (1)
          E E
          Eric Comte Marois 12 years ago

            The MeasureString approach isn't efficient enough. It requires checking on the actual appearance of the band for font and options like text wrapping.

            A BestFit method is necessary IMHO.

            Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

            Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.