> 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/it/comandi-powershell/new-udchartjsdataset.md).

# New-UDChartJSDataset

New-UDChartJSDataset definisce un singolo set di dati, inclusi dati, etichette e colori, per i grafici creati con New-UDChartJS in PowerShell Universal.

### Sinossi

Crea un nuovo set di dati ChartJS.

### Sintassi

```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>]
```

### Descrizione

Crea un nuovo set di dati ChartJS. Questo cmdlet viene utilizzato per creare un nuovo set di dati per `New-UDChartJS`.

### Parametri

#### -Data

I dati per il set di dati. Il formato dei dati dipende dal tipo di grafico che si sta creando.

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

#### -DataProperty

La proprietà dell'oggetto dati da utilizzare come dati per il set di dati.

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

#### -Label

L'etichetta per il set di dati.

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

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

Il colore di sfondo per il set di dati.

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

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

Il colore del bordo per il set di dati.

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

#### -BorderWidth

La larghezza del bordo per il set di dati.

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

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

Il colore di sfondo al passaggio del mouse per il set di dati.

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

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

Il colore del bordo al passaggio del mouse per il set di dati.

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

#### -HoverBorderWidth

La larghezza del bordo al passaggio del mouse per il set di dati.

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

#### -XAxisId

L'ID dell'asse X da utilizzare per il set di dati.

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

#### -YAxisId

L'ID dell'asse Y da utilizzare per il set di dati.

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

#### -AdditionalOptions

Una hashtable di opzioni aggiuntive da applicare al set di dati. Per maggiori informazioni, consulti la [documentazione di ChartJS](https://www.chartjs.org/docs/3.9.1/).

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

#### Parametri comuni

Questo cmdlet supporta i parametri comuni: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable e OutVariable. Per maggiori informazioni, consulti [about\_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).

### Esempi

#### Esempio 1: creare più set di dati

```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
```

Crea set di dati per CPU e conteggio degli handle e li visualizza in un grafico a barre.


---

# 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/it/comandi-powershell/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.
