> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nextedy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Customization

> Nextedy RISKSHEET provides extensive customization options that let you tailor the interface to your team's risk analysis workflow.

export const LastReviewed = ({date}) => {
  if (!date) return null;
  const formatted = new Date(`${date}T00:00:00Z`).toLocaleDateString("en-US", {
    year: "numeric",
    month: "long",
    day: "numeric",
    timeZone: "UTC"
  });
  return <p className="mt-10 text-sm text-gray-400 dark:text-zinc-500 not-prose">
      Last reviewed on {formatted}
    </p>;
};

<Columns cols={3}>
  <Card title="Customize the Top Panel" icon="file" href="/risksheet/guides/customization/top-panel">
    Add custom buttons, filters, and information displays above the risk analysis grid using Velocity templates.
  </Card>

  <Card title="Customize the Context Menu" icon="bars" href="/risksheet/guides/customization/context-menu">
    Register custom right-click actions and control which menu items appear for your users.
  </Card>

  <Card title="Create Saved Views" icon="file" href="/risksheet/guides/customization/saved-views">
    Define named column visibility presets so users can quickly switch between different analysis perspectives.
  </Card>

  <Card title="Configure Dropdown Categories" icon="file" href="/risksheet/guides/customization/dropdown-categories">
    Organize menu items into logical groups for cleaner navigation and faster access.
  </Card>

  <Card title="Create Custom Renderers" icon="file" href="/risksheet/guides/customization/custom-renderers">
    Build custom cell and row header renderers for specialized data visualization in the grid.
  </Card>

  <Card title="Configure Column Visibility" icon="file" href="/risksheet/guides/customization/column-visibility">
    Control which columns are shown or hidden by default and manage visibility per saved view.
  </Card>
</Columns>

<Tip title="Customization vs. Configuration">
  Customization guides focus on the user interface experience (panels, menus, views), while [Configuration Management](/risksheet/guides/configuration/index) covers the underlying sheet configuration structure and template inheritance. Start with configuration if you need to change data structure, or start here if you need to improve the user experience.
</Tip>

<LastReviewed date="2026-06-24" />
