/**
* Load a renderer
*
* @param string $type The renderer type
*
* @return RendererInterface
*
* @since 1.7.0
* @throws \RuntimeException
*/
public function loadRenderer($type)
{
return $this->factory->createRenderer($this, $type);
}