You can attach the bubble HTML to the event using OnBeforeEventRender.
protected override void OnBeforeEventRender(BeforeEventRenderArgs e)
{
e.StaticBubbleHtml = "<div style='font-weight:bold'>Event Detail</div>";
}This way, the bubble will not have to load its content from the server when activated.