We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e000520 commit e878832Copy full SHA for e878832
1 file changed
netpyne_ui/netpyne_geppetto.py
@@ -333,14 +333,12 @@ def getNetPyNELFPLocationsPlot(self):
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
+ args = self.getPlotSettings('plotRxDConcentration')
+ fig = analysis.plotRxDConcentration(showFig=False, **args)
+ if fig==-1:
+ return fig
+ else:
+ return ui.getSVG(fig)
344
345
def getAvailablePops(self):
346
return netParams.popParams.keys()
0 commit comments