Timeline

Timeline class

descrizione sommaria della visualizzazione sequenza temporale

public class Timeline

Proprietà

NomeDescrizione
Caption { get; set; }Restituisce o imposta la didascalia della linea temporale specificata.
HeightPixel { get; set; }Restituisce o imposta l’altezza della sequenza temporale specificata, in pixel.
LeftPixel { get; set; }Restituisce o imposta l’offset orizzontale della forma della timeline dalla sua colonna di sinistra, in pixel.
Name { get; set; }Restituisce o imposta il nome della linea temporale specificata
TopPixel { get; set; }Restituisce o imposta l’offset verticale della forma della timeline dalla riga superiore, in pixel.
WidthPixel { get; set; }Restituisce o imposta la larghezza della timeline specificata, in pixel.

Esempi


[C#]
Workbook book = new Workbook();
Worksheet sheet = book.Worksheets[0];
Cells cells = sheet.Cells;
cells[0, 0].Value = "fruit";
cells[1, 0].Value = "grape";
cells[2, 0].Value = "blueberry";
cells[3, 0].Value = "kiwi";
cells[4, 0].Value = "cherry";

//Crea stile data
Style dateStyle = new CellsFactory().CreateStyle();
dateStyle.Custom = "m/d/yyyy";
cells[0, 1].Value = "date";
cells[1, 1].Value = new DateTime(2021, 2, 5);
cells[2, 1].Value = new DateTime(2022, 3, 8);
cells[3, 1].Value = new DateTime(2023, 4, 10);
cells[4, 1].Value = new DateTime(2024, 5, 16);
//Imposta lo stile della data
cells[1, 1].SetStyle(dateStyle);
cells[2, 1].SetStyle(dateStyle);
cells[3, 1].SetStyle(dateStyle);
cells[4, 1].SetStyle(dateStyle);

cells[0, 2].Value = "amount";
cells[1, 2].Value = 50;
cells[2, 2].Value = 60;
cells[3, 2].Value = 70;
cells[4, 2].Value = 80;

PivotTableCollection pivots = sheet.PivotTables;
//Aggiungi una tabella pivot
int pivotIndex = pivots.Add("=Sheet1!A1:C5", "A12", "TestPivotTable");
PivotTable pivot = pivots[pivotIndex];
pivot.AddFieldToArea(PivotFieldType.Row, "fruit");
pivot.AddFieldToArea(PivotFieldType.Column, "date");
pivot.AddFieldToArea(PivotFieldType.Data, "amount");
pivot.PivotTableStyleType = PivotTableStyleType.PivotTableStyleMedium10;

//Aggiorna i dati della tabella pivot
pivot.RefreshData();
pivot.CalculateData();

//Aggiungi una nuova sequenza temporale utilizzando la tabella pivot come origine dati
sheet.Timelines.Add(pivot, 10, 5, "date");

//Ottieni l'oggetto Timeline
Timeline timelineObj = sheet.Timelines[0];



book.Save("out.xlsx");

//fai i tuoi affari

Guarda anche