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);
}