Skip to content

Commit

Permalink
Use the channel name for labels and tooltips.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mailaender committed Jun 29, 2021
1 parent ac4b89d commit 00603bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ private ILineSeriesData getChannelCurve(IChannel channel, Color color) {
for(int index = 0; index < pointList.size(); index++) {
points[index] = pointList.get(index);
}
ISeriesData seriesData = new SeriesData(points, "Channel " + channel.getId());
ISeriesData seriesData = new SeriesData(points, channel.getDetectionName());
lineSeriesData = new LineSeriesData(seriesData);
ILineSeriesSettings lineSeriesSettings = lineSeriesData.getSettings();
lineSeriesSettings.setLineColor(color);
Expand Down

0 comments on commit 00603bd

Please sign in to comment.