我基本上想要右边带有刻度线的Y标签(使用PyPlot)。对于Python,我找到了命令CREATE DOMAIN myint AS integer
CONSTRAINT not_null CHECK (VALUE IS NOT NULL);
CREATE FUNCTION myfunc() RETURNS myint LANGUAGE plpgsql AS $$
DECLARE
notnullint myint;
BEGIN
notnullint := 1;
RETURN notnullint;
END
$$;
mydb=# select myfunc();
ERROR: value for domain myint violates check constraint "not_null"
CONTEXT: PL/pgSQL function myfunc() line 4 during statement
block local variable initialization
。
但如果我这样做
ax.yaxis.set_label_position("right")
或ax=gca()
ax.yaxis.set_label_position("right")
Julia说,第一种情况为“类型PyObject没有字段yaxis”,第二种情况为“ TypeError(“'YAxis'对象不可调用”,)“。如何正确处理?
答案 0 :(得分:2)
您可以写:
fabric.loadSVGFromString(options.svgLegend, function (results, renderOptions) {
results.filter(function(obj){ if(obj.type === 'circle'){ obj.width = obj.radius; } });
得到想要的东西