Skip to content

Commit

Permalink
Merge pull request #118 from VEuPathDB/1531-lineplot-connect-points
Browse files Browse the repository at this point in the history
connect points in lineplot Viz
  • Loading branch information
moontrip authored Apr 27, 2023
2 parents 5588bea + 5118d10 commit ce00dd4
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2313,10 +2313,9 @@ function processInputData(
marker: { color, symbol: markerSymbol(index, el) },
// this needs to be here for the case of markers with line or lineplot.
line: { color, shape: 'linear' },
// for connecting points regardless of missing data
// Note: connectgaps being commented out may cause other issues
// connectgaps: true,
seriesType: el.seriesType,
// for connecting points regardless of missing data
connectgaps: el.seriesType === 'standard' ? true : undefined,
});

return breakAfterThisSeries(index);
Expand Down

0 comments on commit ce00dd4

Please sign in to comment.