We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ebc5ea commit e000520Copy full SHA for e000520
1 file changed
netpyne_ui/netpyne_geppetto.py
@@ -331,6 +331,16 @@ def getNetPyNELFPLocationsPlot(self):
331
svgs.append(ui.getSVG(fig[0][0]))
332
333
return svgs.__str__()
334
+
335
+ def getNetPyNERxDConcentration(self):
336
+ try:
337
+ fig = rxd.plotExtracellularConcentration(species=rxd.ca)
338
+ if fig==-1:
339
+ return fig
340
+ else:
341
+ return ui.getSVG(fig)
342
+ except:
343
+ return -1
344
345
def getAvailablePops(self):
346
return netParams.popParams.keys()
0 commit comments