Porsche Design SystemSearchNavigate to GitHub repository of Porsche Design SystemOpen sidebar
ConfiguratorExamplesUsageAccessibilityAPI
Segmented Control The p-segmented-control component is similar to the native select element while showing all available options right away. It even behaves like a select where it can be controlled by setting the current value. However, it is not required and you could purely rely on the change event. Visually the p-segmented-control displays all options in equal size based on its largest option. When the p-segmented-control component is used within a form, it utilizes the ElementInternals API, which has limited browser support. Each option needs to be rendered by using a p-segmented-control-item child component where the value property is mandatory in order to emit a useful change event.
Option 1Option 2Option 3Option 4Option 5
Open in Stackblitz
<!doctype html>
<html lang="en" class="auto">
<head>
  <title></title>
</head>
<body class="bg-base">

<p-segmented-control>
  <p-segmented-control-item value="1">
    Option 1
  </p-segmented-control-item>
  <p-segmented-control-item value="2">
    Option 2
  </p-segmented-control-item>
  <p-segmented-control-item value="3">
    Option 3
  </p-segmented-control-item>
  <p-segmented-control-item value="4">
    Option 4
  </p-segmented-control-item>
  <p-segmented-control-item value="5">
    Option 5
  </p-segmented-control-item>
</p-segmented-control>
<script>

</script>
</body>
</html>
Global settingsThemeChanges the theme of the application and any Porsche Design System component. It's possible to choose between forced theme light and dark. It's also possible to use auto, which applies light or dark theme depending on the operating system settings automatically.LightDarkAuto (sync with operating system)DirectionChanges the direction of HTML elements, mostly used on<html> tag to support languages which are read from right to left like e.g. Arabic.LTR (left-to-right)RTL (right-to-left)AutoText ZoomChanges the text size and values with unit rem or em relatively. This setting can be defined in browser settings for any website or by an application itself on<html> tag. To achieve WCAG 2.2 AA compliance it's obligatory to support text zoom up to at least 200%.100%130%150%200%