MCPcopy Create free account
hub / github.com/arrayfire/forge / fg_set_plot_legend

Function fg_set_plot_legend

src/api/c/plot.cpp:75–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73}
74
75fg_err fg_set_plot_legend(fg_plot pPlot, const char* pLegend)
76{
77 try {
78 ARG_ASSERT(0, (pPlot!=0));
79 ARG_ASSERT(1, (pLegend!=0));
80
81 getPlot(pPlot)->setLegend(pLegend);
82 }
83 CATCHALL
84
85 return FG_ERR_NONE;
86}
87
88fg_err fg_set_plot_marker_size(fg_plot pPlot, const float pMarkerSize)
89{

Callers 1

setLegendMethod · 0.85

Calls 2

getPlotFunction · 0.85
setLegendMethod · 0.45

Tested by

no test coverage detected