> For the complete documentation index, see [llms.txt](https://docs.devolutions.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.devolutions.net/powershell-universal/de/powershell-befehle/new-udchartjsdataset.md).

# New-UDChartJSDataset

New-UDChartJSDataset definiert ein einzelnes Dataset, einschließlich Daten, Beschriftungen und Farben, für Diagramme, die mit New-UDChartJS in PowerShell Universal erstellt werden.

### Übersicht

Erstellt ein neues ChartJS-Dataset.

### Syntax

```powershell
New-UDChartJSDataset [[-Data] <Object>] [[-DataProperty] <String>] [[-Label] <String>] [[-BackgroundColor] <DashboardColor[]>] [[-BorderColor] <DashboardColor[]>] [[-BorderWidth] <Int32>] [[-HoverBackgroundColor] <DashboardColor[]>] [[-HoverBorderColor] <DashboardColor[]>] [[-HoverBorderWidth] <Int32>] [[-XAxisId] <String>] [[-YAxisId] <String>] [[-AdditionalOptions] <Hashtable>] [<CommonParameters>]
```

### Beschreibung

Erstellt ein neues ChartJS-Dataset. Dieses Cmdlet wird verwendet, um ein neues Dataset für `New-UDChartJS` zu erstellen.

### Parameter

#### -Data

Die Daten für das Dataset. Das Format der Daten hängt vom Typ des Diagramms ab, das Sie erstellen.

```
Required?                    false
Position?                    1
Default value                @()
Accept pipeline input?       false
Aliases
Accept wildcard characters?  false
```

#### -DataProperty

Die Eigenschaft des Datenobjekts, die als Daten für das Dataset verwendet werden soll.

```
Required?                    false
Position?                    2
Default value
Accept pipeline input?       false
Aliases
Accept wildcard characters?  false
```

#### -Label

Die Beschriftung für das Dataset.

```
Required?                    false
Position?                    3
Default value
Accept pipeline input?       false
Aliases
Accept wildcard characters?  false
```

#### -BackgroundColor \<DashboardColor\[]>

Die Hintergrundfarbe für das Dataset.

```
Required?                    false
Position?                    4
Default value                @("#807B210C")
Accept pipeline input?       false
Aliases
Accept wildcard characters?  false
```

#### -BorderColor \<DashboardColor\[]>

Die Rahmenfarbe für das Dataset.

```
Required?                    false
Position?                    5
Default value                @("#FF7B210C")
Accept pipeline input?       false
Aliases
Accept wildcard characters?  false
```

#### -BorderWidth

Die Rahmenbreite für das Dataset.

```
Required?                    false
Position?                    6
Default value                0
Accept pipeline input?       false
Aliases
Accept wildcard characters?  false
```

#### -HoverBackgroundColor \<DashboardColor\[]>

Die Hintergrundfarbe beim Hover für das Dataset.

```
Required?                    false
Position?                    7
Default value                @("#807B210C")
Accept pipeline input?       false
Aliases
Accept wildcard characters?  false
```

#### -HoverBorderColor \<DashboardColor\[]>

Die Rahmenfarbe beim Hover für das Dataset.

```
Required?                    false
Position?                    8
Default value                @("#FF7B210C")
Accept pipeline input?       false
Aliases
Accept wildcard characters?  false
```

#### -HoverBorderWidth

Die Rahmenbreite beim Hover für das Dataset.

```
Required?                    false
Position?                    9
Default value                0
Accept pipeline input?       false
Aliases
Accept wildcard characters?  false
```

#### -XAxisId

Die ID der X-Achse, die für das Dataset verwendet werden soll.

```
Required?                    false
Position?                    10
Default value
Accept pipeline input?       false
Aliases
Accept wildcard characters?  false
```

#### -YAxisId

Die ID der Y-Achse, die für das Dataset verwendet werden soll.

```
Required?                    false
Position?                    11
Default value
Accept pipeline input?       false
Aliases
Accept wildcard characters?  false
```

#### -AdditionalOptions

Eine Hashtable mit zusätzlichen Optionen, die auf das Dataset angewendet werden. Weitere Informationen finden Sie in der [ChartJS-Dokumentation](https://www.chartjs.org/docs/3.9.1/).

```
Required?                    false
Position?                    12
Default value
Accept pipeline input?       false
Aliases
Accept wildcard characters?  false
```

#### Allgemeine Parameter

Dieses Cmdlet unterstützt die allgemeinen Parameter: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable und OutVariable. Weitere Informationen finden Sie unter [about\_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).

### Beispiele

#### Beispiel 1: Mehrere Datasets erstellen

```powershell
$Data = Get-Process | Sort-Object -Property CPU -Descending | Select-Object -First 10

$CPUDataset = New-UDChartJSDataset -DataProperty CPU -Label CPU -BackgroundColor '#126f8c'
$MemoryDataset = New-UDChartJSDataset -DataProperty HandleCount -Label 'Handle Count' -BackgroundColor '#8da322'
$Options = @{
    Type = 'bar'
    Data = $Data
    Dataset = @($CPUDataset, $MemoryDataset)
    LabelProperty = 'ProcessName'
}
New-UDChartJS @Options
```

Erstellt Datasets für CPU und Handle-Anzahl und zeigt sie in einem Balkendiagramm an.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.devolutions.net/powershell-universal/de/powershell-befehle/new-udchartjsdataset.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
