Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Chart > Office 2007 theme lines
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Not answered Office 2007 theme lines

Feed from this thread
  • Michael avatar

    Posted on Jun 9, 2011 (permalink)

    I cannot for the life of me find what setting will hide the lines that show up by default for a bar graph with the theme office 2007. Anyone know what the setting is that will hide these lines?

  • Evgenia Evgenia admin's avatar

    Posted on Jun 14, 2011 (permalink)

    Hi Michael,

    The Lines that you want to remove are MajorGridLines and MinorGridLines of the YAxis. They are visible by default when Office 2007 Skin is used. To be able to remove them you can set their Color to Transparent like this:

    <YAxis>
                        <Appearance Color="134, 134, 134" MajorTick-Color="134, 134, 134" 
                            MinorTick-Color="134, 134, 134">
                            <MajorGridLines Color="Transparent" />
                            <MinorGridLines Color="Transparent" />
                            <TextAppearance TextProperties-Color="Black">
                            </TextAppearance>
                        </Appearance>
    </YAxis>

    Greetings,
    Evgenia
    the Telerik team

    Consider using RadControls for ASP.NET AJAX (built on top of the ASP.NET AJAX framework) as a replacement for the Telerik ASP.NET Classic controls, See the product support lifecycle here.

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Chart > Office 2007 theme lines