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

Function fg_set_chart_legend_position

src/api/c/chart.cpp:135–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

133}
134
135fg_err fg_set_chart_legend_position(fg_chart pChart, const float pX, const float pY)
136{
137 try {
138 ARG_ASSERT(0, (pChart!=0));
139 ARG_ASSERT(0, (pX>=0));
140 ARG_ASSERT(0, (pY>=0));
141
142 getChart(pChart)->setLegendPosition(pX, pY);
143 }
144 CATCHALL
145
146 return FG_ERR_NONE;
147}
148
149fg_err fg_append_image_to_chart(fg_chart pChart, fg_image pImage)
150{

Callers 1

setLegendPositionMethod · 0.85

Calls 2

getChartFunction · 0.85
setLegendPositionMethod · 0.45

Tested by

no test coverage detected