The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here

"[SOLVED] Reporting Extension: How to reduce depth of TOC"

tennenrishintennenrishin Member Posts: 177 Contributor II
edited June 2019 in Help
Is there any way to reduce the depth of (number of levels included in) the table of contents generated in a report by the Reporting Extension?

EDIT: Or even just to exclude links to reported items (as opposed to section headings)?
Tagged:

Answers

  • landland RapidMiner Certified Analyst, RapidMiner Certified Expert, Member Posts: 2,531 Unicorn
    Hi,

    unfortunately there seems not to be such an option in the static reporting extension.

    Did you try to adapt the css file, so that it simply does not show headings of a specific depth by setting the block type to hidden?

    Greetings,
      Sebastian
  • tennenrishintennenrishin Member Posts: 177 Contributor II
    That is a great idea!

    For example, the following css hides all toc entries deeper than level 2.
    ul.rm_toc>li>ul.rm_toc>li>ul.rm_toc {
    display: none;
    }
    Thanks ;)
Sign In or Register to comment.