I am designing a telemetry chart to show how the number of open and closed jira issues change for a particular release. Obviously, in this case, a stacked bar chart is more visually intuitive than the line chart we currently have. I have a proposal to enhance telemetry language.

Current telemetry language:

streams mystream() = {"description not visually displayed", "unit", Reducer()};
 chart mychart(param) = {"chart name", mystream()};
 draw mychart("param");

Proposed enhancement:

 draw mychart("param") [as LineChart|BarChart|....|...]


The "[as LineChart|BarChart|....|...]" part is optional. Default is line chart, so that it's backward compatible with existing language.

Comments?

Thanks.

Cedric

Reply via email to