有没有办法将变量包含在情节标题中?我希望我的标题取决于某个整数的值(此处取决于iC_FC_size)。
var text = ee.String('Landsat Mission 4-8 - GEE image availability: ').cat(iC_FC_size)
var options1 = {
title: 'Landsat Mission 4-8 - GEE image availability Suriname',
hAxis: {title: 'Year'},
vAxis: {title: 'Image count'},
colors: ['red']
}; // options for plotting histogram
var histogram = ui.Chart.feature.histogram({
features: iC_FC,
property: 'year',
minBucketWidth: 1
}).setOptions(options1);
var panel = ui.Panel({
layout: ui.Panel.Layout.flow('vertical'),
style: {position: 'bottom-right', height: '500px', width:'350px'}
}); // create panel for plotting
ui.root.add(panel);
panel.widgets().set(0, histogram); // plot the histogram
想知道这是否可能?
问候!