linear presenting of couple series on Custom Charts
Hi,
Let's say I have 4 different data series which I going to present on Custom Charts.
The problem is the series are taken from variety of test builds/configurations and they are presented as a dots when X axis is a build number.
Is there somehow possible to present it not as a dots, but as a linear charts - in this case 4 lines (like averages for each serie seperately on one chart)?
BR, Łukasz
Please sign in to leave a comment.
Hi Łukasz,
We have an issue in our tracker covering this scenario: https://youtrack.jetbrains.com/issue/TW-39616
We also have a way to merge lines. You can try adding the "properties.series.line.mergePoints = true" to the project and it might work.
An example of a project definition that has graphs configured to merge points into lines:
<project-extensions>
<extension id="PROJECT_EXT_21" type="project-graphs">
<parameters>
<param name="properties.series.line.mergePoints" value="true"/>
<param name="format" value="text" />
<param name="series"><![CDATA[[
{
"type": "valueType",
"sourceBuildTypeId": "SomeProject_BuildType1",
"title": "BuildType1 duration",
"key": "BuildDuration"
},
{
"type": "valueType",
"sourceBuildTypeId": "SomeProject_BuildType2",
"title": "BuildType2 duration",
"key": "BuildDuration"
}
]]]></param>
<param name="seriesTitle" value="Duration" />
<param name="title" value="Compare durations" />
</parameters>
</extension>
</project-extensions>
Could you try whether this works for you?
Hi Denis,
Yes, this works! I just was looking for such property. Is it somewhere in the help bc I had missed it somehow?
Thanks a lot.
Regards,
Łukasz
Hi,
no, unfortunately this isn't available in the help, we will look to document it, but it's not quite there yet.