Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -15,90 +15,18 @@ export class TemperatureAnnotatedData extends Array<TemperatureAnnotatedDataItem
super(...items);
} else {
const newItems = [
new TemperatureAnnotatedDataItem(
{
index: 0,
tempInfo: `27°C`,
temperature: 27,
month: `Jan`
}),
new TemperatureAnnotatedDataItem(
{
index: 1,
tempInfo: `25°C`,
temperature: 25,
month: `Feb`
}),
new TemperatureAnnotatedDataItem(
{
index: 2,
tempInfo: `21°C`,
temperature: 21,
month: `Mar`
}),
new TemperatureAnnotatedDataItem(
{
index: 3,
tempInfo: `19°C`,
temperature: 19,
month: `Apr`
}),
new TemperatureAnnotatedDataItem(
{
index: 4,
tempInfo: `16°C`,
temperature: 16,
month: `May`
}),
new TemperatureAnnotatedDataItem(
{
index: 5,
tempInfo: `13°C`,
temperature: 13,
month: `Jun`
}),
new TemperatureAnnotatedDataItem(
{
index: 6,
tempInfo: `14°C`,
temperature: 14,
month: `Jul`
}),
new TemperatureAnnotatedDataItem(
{
index: 7,
tempInfo: `15°C`,
temperature: 15,
month: `Aug`
}),
new TemperatureAnnotatedDataItem(
{
index: 8,
tempInfo: `19°C`,
temperature: 19,
month: `Sep`
}),
new TemperatureAnnotatedDataItem(
{
index: 9,
tempInfo: `22°C`,
temperature: 22,
month: `Oct`
}),
new TemperatureAnnotatedDataItem(
{
index: 10,
tempInfo: `26°C`,
temperature: 26,
month: `Nov`
}),
new TemperatureAnnotatedDataItem(
{
index: 11,
tempInfo: `30°C`,
temperature: 30,
month: `Dec`
}),
new TemperatureAnnotatedDataItem({ index: 0, tempInfo: `27°C`, temperature: 27, month: `Jan` }),
new TemperatureAnnotatedDataItem({ index: 1, tempInfo: `25°C`, temperature: 25, month: `Feb` }),
new TemperatureAnnotatedDataItem({ index: 2, tempInfo: `21°C`, temperature: 21, month: `Mar` }),
new TemperatureAnnotatedDataItem({ index: 3, tempInfo: `19°C`, temperature: 19, month: `Apr` }),
new TemperatureAnnotatedDataItem({ index: 4, tempInfo: `16°C`, temperature: 16, month: `May` }),
new TemperatureAnnotatedDataItem({ index: 5, tempInfo: `13°C`, temperature: 13, month: `Jun` }),
new TemperatureAnnotatedDataItem({ index: 6, tempInfo: `14°C`, temperature: 14, month: `Jul` }),
new TemperatureAnnotatedDataItem({ index: 7, tempInfo: `15°C`, temperature: 15, month: `Aug` }),
new TemperatureAnnotatedDataItem({ index: 8, tempInfo: `19°C`, temperature: 19, month: `Sep` }),
new TemperatureAnnotatedDataItem({ index: 9, tempInfo: `22°C`, temperature: 22, month: `Oct` }),
new TemperatureAnnotatedDataItem({ index: 10, tempInfo: `26°C`, temperature: 26, month: `Nov` }),
new TemperatureAnnotatedDataItem({ index: 11, tempInfo: `30°C`, temperature: 30, month: `Dec` }),
];
super(...newItems.slice(0));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,90 +15,18 @@ export class TemperatureAnnotatedData extends Array<TemperatureAnnotatedDataItem
super(...items);
} else {
const newItems = [
new TemperatureAnnotatedDataItem(
{
index: 0,
tempInfo: `27°C`,
temperature: 27,
month: `Jan`
}),
new TemperatureAnnotatedDataItem(
{
index: 1,
tempInfo: `25°C`,
temperature: 25,
month: `Feb`
}),
new TemperatureAnnotatedDataItem(
{
index: 2,
tempInfo: `21°C`,
temperature: 21,
month: `Mar`
}),
new TemperatureAnnotatedDataItem(
{
index: 3,
tempInfo: `19°C`,
temperature: 19,
month: `Apr`
}),
new TemperatureAnnotatedDataItem(
{
index: 4,
tempInfo: `16°C`,
temperature: 16,
month: `May`
}),
new TemperatureAnnotatedDataItem(
{
index: 5,
tempInfo: `13°C`,
temperature: 13,
month: `Jun`
}),
new TemperatureAnnotatedDataItem(
{
index: 6,
tempInfo: `14°C`,
temperature: 14,
month: `Jul`
}),
new TemperatureAnnotatedDataItem(
{
index: 7,
tempInfo: `15°C`,
temperature: 15,
month: `Aug`
}),
new TemperatureAnnotatedDataItem(
{
index: 8,
tempInfo: `19°C`,
temperature: 19,
month: `Sep`
}),
new TemperatureAnnotatedDataItem(
{
index: 9,
tempInfo: `22°C`,
temperature: 22,
month: `Oct`
}),
new TemperatureAnnotatedDataItem(
{
index: 10,
tempInfo: `26°C`,
temperature: 26,
month: `Nov`
}),
new TemperatureAnnotatedDataItem(
{
index: 11,
tempInfo: `30°C`,
temperature: 30,
month: `Dec`
}),
new TemperatureAnnotatedDataItem({ index: 0, tempInfo: `27°C`, temperature: 27, month: `Jan` }),
new TemperatureAnnotatedDataItem({ index: 1, tempInfo: `25°C`, temperature: 25, month: `Feb` }),
new TemperatureAnnotatedDataItem({ index: 2, tempInfo: `21°C`, temperature: 21, month: `Mar` }),
new TemperatureAnnotatedDataItem({ index: 3, tempInfo: `19°C`, temperature: 19, month: `Apr` }),
new TemperatureAnnotatedDataItem({ index: 4, tempInfo: `16°C`, temperature: 16, month: `May` }),
new TemperatureAnnotatedDataItem({ index: 5, tempInfo: `13°C`, temperature: 13, month: `Jun` }),
new TemperatureAnnotatedDataItem({ index: 6, tempInfo: `14°C`, temperature: 14, month: `Jul` }),
new TemperatureAnnotatedDataItem({ index: 7, tempInfo: `15°C`, temperature: 15, month: `Aug` }),
new TemperatureAnnotatedDataItem({ index: 8, tempInfo: `19°C`, temperature: 19, month: `Sep` }),
new TemperatureAnnotatedDataItem({ index: 9, tempInfo: `22°C`, temperature: 22, month: `Oct` }),
new TemperatureAnnotatedDataItem({ index: 10, tempInfo: `26°C`, temperature: 26, month: `Nov` }),
new TemperatureAnnotatedDataItem({ index: 11, tempInfo: `30°C`, temperature: 30, month: `Dec` }),
];
super(...newItems.slice(0));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,90 +15,18 @@ export class TemperatureAnnotatedData extends Array<TemperatureAnnotatedDataItem
super(...items);
} else {
const newItems = [
new TemperatureAnnotatedDataItem(
{
index: 0,
tempInfo: `27°C`,
temperature: 27,
month: `Jan`
}),
new TemperatureAnnotatedDataItem(
{
index: 1,
tempInfo: `25°C`,
temperature: 25,
month: `Feb`
}),
new TemperatureAnnotatedDataItem(
{
index: 2,
tempInfo: `21°C`,
temperature: 21,
month: `Mar`
}),
new TemperatureAnnotatedDataItem(
{
index: 3,
tempInfo: `19°C`,
temperature: 19,
month: `Apr`
}),
new TemperatureAnnotatedDataItem(
{
index: 4,
tempInfo: `16°C`,
temperature: 16,
month: `May`
}),
new TemperatureAnnotatedDataItem(
{
index: 5,
tempInfo: `13°C`,
temperature: 13,
month: `Jun`
}),
new TemperatureAnnotatedDataItem(
{
index: 6,
tempInfo: `14°C`,
temperature: 14,
month: `Jul`
}),
new TemperatureAnnotatedDataItem(
{
index: 7,
tempInfo: `15°C`,
temperature: 15,
month: `Aug`
}),
new TemperatureAnnotatedDataItem(
{
index: 8,
tempInfo: `19°C`,
temperature: 19,
month: `Sep`
}),
new TemperatureAnnotatedDataItem(
{
index: 9,
tempInfo: `22°C`,
temperature: 22,
month: `Oct`
}),
new TemperatureAnnotatedDataItem(
{
index: 10,
tempInfo: `26°C`,
temperature: 26,
month: `Nov`
}),
new TemperatureAnnotatedDataItem(
{
index: 11,
tempInfo: `30°C`,
temperature: 30,
month: `Dec`
}),
new TemperatureAnnotatedDataItem({ index: 0, tempInfo: `27°C`, temperature: 27, month: `Jan` }),
new TemperatureAnnotatedDataItem({ index: 1, tempInfo: `25°C`, temperature: 25, month: `Feb` }),
new TemperatureAnnotatedDataItem({ index: 2, tempInfo: `21°C`, temperature: 21, month: `Mar` }),
new TemperatureAnnotatedDataItem({ index: 3, tempInfo: `19°C`, temperature: 19, month: `Apr` }),
new TemperatureAnnotatedDataItem({ index: 4, tempInfo: `16°C`, temperature: 16, month: `May` }),
new TemperatureAnnotatedDataItem({ index: 5, tempInfo: `13°C`, temperature: 13, month: `Jun` }),
new TemperatureAnnotatedDataItem({ index: 6, tempInfo: `14°C`, temperature: 14, month: `Jul` }),
new TemperatureAnnotatedDataItem({ index: 7, tempInfo: `15°C`, temperature: 15, month: `Aug` }),
new TemperatureAnnotatedDataItem({ index: 8, tempInfo: `19°C`, temperature: 19, month: `Sep` }),
new TemperatureAnnotatedDataItem({ index: 9, tempInfo: `22°C`, temperature: 22, month: `Oct` }),
new TemperatureAnnotatedDataItem({ index: 10, tempInfo: `26°C`, temperature: 26, month: `Nov` }),
new TemperatureAnnotatedDataItem({ index: 11, tempInfo: `30°C`, temperature: 30, month: `Dec` }),
];
super(...newItems.slice(0));
}
Expand Down
Loading
Loading