I wish to have a grid of points or dots along with the labels, and combine them into a single figure like the one below.

I tried the closest graph I can for the first grid in the top left, and here's the result of it,
\documentclass{article}
\usepackage{tikz}
\begin{tikzpicture}
\foreach \x in {0,1,2,3,4,5,6}
\foreach \y in {0,1,2,3,4,5,6}
{
\draw (\x,\y) circle (0.3cm);
}
\fill (3,4) node {\textbf{A}};
\fill (4,3) node {\textbf{B}};
\fill (3,3) node {\textbf{X}};
\fill (3,2) node {\textbf{C}};
\fill (2,3) node {\textbf{D}};
\end{tikzpicture}
\end{document}

I would be happy if you could help me with the codes of these grids for both two and one dimension.
Thank you in advance!


