Published
Edited
Jun 30, 2022
Importers
1 star
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
chartCasos = (element) => {
const configChartCasos = new Object({
title: {
text: "",
size: 25,
color: colors.mainText
},
subtitle: {
text: "",
size: 12,
color: colors.secondaryText
},
foot: "",
chart_width: dimensions.boundedWidth,
chart_height: dimensions.boundedHeight / 2,
margin: { left: 0, top: 20, right: 0, bottom: 60 },
labelX: "",
labelY: texts[language].casos.labelY,
axisColorLine: colors.offText,
axisColorText: colors.offText,
timeAnimation: 0
});

const annotationsChartCasos = new Object({
annotation1: {
x: max_objects[2020].data,
y: max_objects[2020].media_movel7_casos,
dx: -10,
dy: -20,
maxWidth: 180,
lineSize: 150,
title: {
text: texts[language].casos.annotation1.title,
size: 12,
color: colors.noteText
},
withRect: false,
textAnchor: "end",
opacityRect: 0.7,
annotation: {
text: texts[language].casos.annotation1.text,
size: 11,
color: colors.noteText
}
},
annotation2: {
x: max_objects[2021].data,
y: max_objects[2021].media_movel7_casos,
dx: 10,
maxWidth: 150,
lineSize: 150,
title: {
text: texts[language].casos.annotation2.title,
size: 12,
color: colors.noteText
},
withRect: false,
textAnchor: "start",
opacityRect: 0.7,
annotation: {
text: texts[language].casos.annotation2.text,
size: 11,
color: colors.noteText
}
},
annotation3: {
x: max_objects[2022].data,
y: max_objects[2022].media_movel7_casos,
dx: 10,
maxWidth: 120,
lineSize: 150,
title: {
text: texts[language].casos.annotation3.title,
size: 12,
color: colors.noteText
},
withRect: false,
textAnchor: "start",
opacityRect: 0.7,
annotation: {
text: texts[language].casos.annotation3.text,
size: 11,
color: colors.noteText
}
},
annotation4: {
x: configChartCasos.chart_width,
y: configChartCasos.chart_height,
dx: 0,
dy: -140,
maxWidth: 100,
lineSize: 50,
title: {
text: texts[language].casos.annotation4.title,
size: 12,
color: colors.mainText
},
withRect: false,
textAnchor: "start",
opacityRect: 0.7,
annotation: {
text: texts[language].casos.annotation4.text,
size: 11,
color: colors.mainText
}
}
});

const DataChartCasos = [
{
label: "Linha 1",
x: "data",
y: "media_movel7_casos",
color: colors.lines.casos,
width: 1.5,
data: dados_casos_obitos,
annotations: [
annotationsChartCasos.annotation2,
annotationsChartCasos.annotation3
],
area: {
color: colors.lines.casos,
stroke: "none",
strokeWidth: 0,
opacity: 0.2
}
}
];

const chartCasos = element
.append("g")
.attr("id", "chartCasos")
.style("transform", `translate(${0}px,${0}px)`);

configChartCasos["annotationsChart"] = [annotationsChartCasos.annotation4];
configChartCasos["parent"] = chartCasos;
LineChart(DataChartCasos, configChartCasos);
}

Insert cell
chartObitos = (element) => {
const configChartObitos = new Object({
title: {
text: "",
size: 30,
color: colors.mainText
},
subtitle: {
text: "",
size: 18,
color: colors.secondaryText
},
foot: "",
chart_width: dimensions.boundedWidth,
chart_height: dimensions.boundedHeight / 2,
margin: { left: 0, top: 20, right: 0, bottom: 60 },
labelX: "",
labelY: texts[language].obitos.labelY,
axisColorLine: colors.offText,
axisColorText: colors.offText,
timeAnimation: 0
});

const annotationsChartObitos = new Object({
annotation1: {
x: max_objects_obitos[2020].data,
y: max_objects_obitos[2020].media_movel7_obitos,
dx: -10,
maxWidth: 120,
lineSize: 150,
title: {
text: texts[language].obitos.annotation1.title,
size: 12,
color: colors.noteText
},
withRect: false,
textAnchor: "end",
opacityRect: 0.7,
annotation: {
text: texts[language].obitos.annotation1.text,
size: 11,
color: colors.noteText
}
},
annotation2: {
x: max_objects_obitos[2021].data,
y: max_objects_obitos[2021].media_movel7_obitos,
dx: 15,
dy: -20,
maxWidth: 180,
lineSize: 150,
title: {
text: texts[language].obitos.annotation2.title,
size: 12,
color: colors.noteText
},
withRect: false,
textAnchor: "start",
opacityRect: 0.7,
annotation: {
text: texts[language].obitos.annotation2.text,
size: 11,
color: colors.noteText
}
},
annotation3: {
x: max_objects_obitos[2022].data,
y: max_objects_obitos[2022].media_movel7_obitos,
dx: -15,
dy: -40,
maxWidth: 130,
lineSize: 150,
title: {
text: texts[language].obitos.annotation3.title,
size: 12,
color: colors.noteText
},
withRect: false,
textAnchor: "end",
opacityRect: 0.7,
annotation: {
text: texts[language].obitos.annotation3.text,
size: 11,
color: colors.noteText
}
},
annotation4: {
x: configChartObitos.chart_width,
y: configChartObitos.chart_height,
dx: 0,
dy: -120,
maxWidth: 100,
lineSize: 50,
title: {
text: texts[language].obitos.annotation4.title,
size: 12,
color: colors.mainText
},
withRect: false,
textAnchor: "start",
opacityRect: 0.7,
annotation: {
text: texts[language].obitos.annotation4.text,
size: 11,
color: colors.mainText
}
}
});

const DataChartObitos = [
{
label: "Linha 1",
x: "data",
y: "media_movel7_obitos",
color: colors.lines.obitos,
width: 1.5,
data: dados_casos_obitos,
annotations: [
annotationsChartObitos.annotation1,
annotationsChartObitos.annotation2,
annotationsChartObitos.annotation3
],
area: {
color: colors.lines.obitos,
stroke: "none",
strokeWidth: 0,
opacity: 0.2
}
}
];

const chartObitos = element
.append("g")
.attr("id", "chartObitos")
.style("transform", `translate(${0}px,${300}px)`);

configChartObitos["annotationsChart"] = [annotationsChartObitos.annotation4];
configChartObitos["parent"] = chartObitos;
LineChart(DataChartObitos, configChartObitos);
}

Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
import {LineChart} from '@adolfoguimaraes/line-chart-with-annotations'
Insert cell
import {Annotations} from '@adolfoguimaraes/annotations_simple'
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more