So what I did to not show the summary is to use the styles on the envision.css file:
.envision-timeseries-connection .envision-component{
height: 10px;
}
.envision-timeseries-summary .envision-component{
cursor: all-scroll;
height: 10px;
}
Then on my html page I used the style:
<style>
.envision-timeseries-summary{visibility: hidden;}
.envision-timeseries-connection{visibility: hidden;}
</style>
I also set the margin-bottom on the container div to negative so that things can overlay on top of it....or just use a z-index either way. I hope that helps someone out.