pub trait GuiBarChart_Impl<T: HasIDispatch = Self>: HasIDispatch<T> {
// Provided methods
fn chart_count(&self) -> Result<i64> { ... }
fn bar_count(&self, p0: i64) -> Result<i64> { ... }
fn get_bar_content(&self, p0: i64, p1: i64, p2: i64) -> Result<String> { ... }
fn get_grid_line_content(&self, p0: i64, p1: i64, p2: i64) -> Result<String> { ... }
fn grid_count(&self, p0: i64) -> Result<i64> { ... }
fn link_count(&self, p0: i64) -> Result<i64> { ... }
fn send_data(&self, p0: String) -> Result<()> { ... }
}