Is there a way to add padding in between the x axis label and the title? The two are squishing together on all of my charts:
Here are the customizations I have currently:
width: 250,
height: 150,
colorSet: "greenFirst",
title:{
text: "Print materials",
fontColor: "#1f4489",
fontFamily: "Helvetica",
fontSize: 15
},
axisX: {
labelFontFamily: "Helvetica",
labelFontColor: "#69727a",
lineColor: "#69727a",
tickLength: 0
},
axisY: {
viewportMinimum: 0,
viewportMaximum: 50,
interval: 10,
title: "Days",
titleFontSize: 11,
titleFontFamily: "Helvetica",
titleFontColor: "#69727a",
labelFontFamily: "Helvetica",
labelFontColor: "#69727a",
gridThickness: 0,
lineColor: "#69727a",
tickLength: 5,
tickColor: "#69727a"
},
data: [
{
type: "stackedBar",
dataPoints: [
{ y: 35, label: "Threshold" },
{ y: 20, label: "Target" }
]
},
{
type: "stackedBar",
dataPoints: [
{ y: 0, label: "Threshold" },
]
}
]
});
-
This topic was modified 7 years, 9 months ago by art3mis.