Ticket Q253087
Visible to All Users

Export to XLSX - How do you make the columns of the document use best-fit?

created 15 years ago

Is there a way to use best fit for the columns in the excel document when exporting? Currently, the columns are all crammed up and require the user to clean up the column widths.
Thanks,
Chris.

Comments (2)
DevExpress Support Team 15 years ago

    Chris,
    Unfortunately, it's not possible.
    However, you can adjust the width of corresponding columns before generating a report. You can use the TextRenderer.MeasureText() method to calculate the required width.
    Please feel free to contact us if you need any additional assistance. We will be happy to help you.
    Thanks,
    Andrew

    CT CT
    Christopher Todd 15 years ago

      Just to be clear. I am using a XtraGrid control and when I click ExportToXlsx(), I get an xlsx file with a bunch of squished up columns. They don't reflect the width of the columns they represent on the grid. I don't see how adjusting the width will help. I'm attaching an image to illustrate.
      My first question was a bit vague. I know the answer may not change, but I just want to make sure your answer applies to my situation.
      Thanks,
      Chris.

      Answers approved by DevExpress Support

      created 15 years ago (modified 12 years ago)

      Chris,
      Thank you for the feedback.
      To accomplish this task, please set the GridView.OptionsPrint.AutoWidth and GridView.OptionsView.ColumnAutoWidth to false, and call the GridView.BestFitColumns() method.
      Please try this solution, and let us know the results.
      Thanks,
      Andrew

        Show previous comments (2)
        DevExpress Support Team 13 years ago

          Hi Brandon,
          Yes this solution should work correctly. Please check the GridView.OptionsPrint.AutoWidth and GridView.OptionsView.ColumnAutoWidth properties values and call the GridView.BestFitColumns() method before performing export. If it does not help, please provide us with a small sample (create a separate thread please) illustrating the issue. We will examine it and do our best to help you.

            Andrew's solution worked for me. The only exception was a Currency column.

            For my app, I have a hidden GridControl, with the .DataSource set to List(of MyClass)

            The column in question ("Cost") is populated by an Integer field, with the .DisplayFormat propert is set to Numeric "c0"

            When the exported excel file is opened, the column values are displayed as "#####" because the column width is not wide enough. The workaround I use is to multiply the Cost's column width by 1.2, adding 20% to the column width.

            Visual Basic
            ExportGridView.BestFitColumns() ' re-size columns colCost.Width *= 1.2 ' currency columns need 20% more width ExportGridControl.ExportToXlsx(FullFileName) ' export to Excel 2007
            DevExpress Support Team 12 years ago

              Hello Eric,
              Thank you for your feedback. I am glad to hear that the issue has been resolved. Please contact us if you experience any further difficulties.

              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.