Skip to content

Commit aca166a

Browse files
committed
Fix missing rewrite
1 parent cbc6c4e commit aca166a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/chart/options/config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ void Config::setChannelParam(const std::string &path,
6262
auto id = Conv::parse<ChannelId>(parts.at(1));
6363
auto property = parts.at(2);
6464

65-
if (property == "title") { setter->setTitle(id, value); }
65+
if (property == "title") { setter->setAxisTitle(id, value); }
6666
else if (property == "axis") {
6767
setter->setAxisLine(id, Conv::parse<Base::AutoBool>(value));
6868
}

0 commit comments

Comments
 (0)