PlotHistogram1
Definition
-- @/=[C]:-1
function PlotHistogram1(...)
Callers
@/lua/common/extensions/ui/imgui_gen_luaintf.lua
end
function M.PlotHistogram1(string_label, float_values, int_values_count, int_values_offset, string_overlay_text, float_scale_min, float_scale_max, ImVec2_graph_size, int_stride)
if int_values_offset == nil then int_values_offset = 0 end
if float_values == nil then log("E", "", "Parameter 'float_values' of function 'PlotHistogram1' cannot be nil, as the c type is 'const float *'") ; return end
imgui.PlotHistogram1(string_label, float_values, int_values_count, int_values_offset, string_overlay_text, float_scale_min, float_scale_max, ImVec2_graph_size, int_stride)
end